#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include struct VirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct 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 struct VirtualActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template struct VirtualActionInvoker10 { typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9, T10 p10) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, invokeData.method); } }; template struct VirtualFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtualFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct 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 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); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker6 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InvokerActionInvoker1; template struct InvokerActionInvoker1 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker2; template struct InvokerActionInvoker2 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2) { void* params[2] = { p1, p2 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerFuncInvoker3; template struct InvokerFuncInvoker3 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3 p3) { R ret; void* params[3] = { p1, &p2, &p3 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker4; template struct InvokerFuncInvoker4 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4 p4) { R ret; void* params[4] = { p1, p2, &p3, &p4 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; // System.Action`1 struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t37B53432DE16D10368358F7550CC7F349FA29308; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426; // System.Func`1 struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1; // System.Collections.Generic.IComparer`1 struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_t51DBA2F8AFDC8E5CC588729B12034B8C4D30B0AF; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t0792199F67BF165CADE8BC032FD4E24FBCB4EF04; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t34D541B5FA7B648B0BA88CB13474D1CE66138B8D; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t1C4AC9AF598F91960DA77C27B6164094A0C0334C; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t675335DE0343264EE07C7C3CCEA564A8CE5C8C2F; // System.Collections.Generic.List`1 struct List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD; // System.Collections.Generic.List`1 struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12; // System.Predicate`1 struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED; // System.Threading.Tasks.TaskFactory`1> struct TaskFactory_1_t42C9608CCE6E07FBC5D71980718AC1DD4FF97566; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B; // System.Threading.Tasks.Task`1> struct Task_1_tB493F74D58DB1761E087206849D953E99D07600B; // System.Threading.Tasks.Task`1 struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043; // System.Threading.Tasks.Task`1 struct Task_1_t4C228DE57804012969575431CFF12D57C875552D; // System.Threading.Tasks.Task`1 struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2; // System.Tuple`4 struct Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t165FF65BBECE9C225DC52130BF97ED925E5A9133; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tBCDB47EC8418220AE86D165C5F101EE22C27DB75; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t161EBC349138D60E4EE81A9F043A7482748964A9; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tE8E657708760F70661F9043B5C9560E99DF8AFF9; // System.Xml.XmlEventCache/XmlEvent[][] struct XmlEventU5BU5DU5BU5D_t9F35C036D5CCAA8FC5C5D664E53DE22A8D223BFA; // System.Xml.AttributePSVIInfo[] struct AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.Xml.ReadState[] struct ReadStateU5BU5D_tD8D85409A478AA73DD46FD98748D996DDE99B6B0; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.UInt32[] struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA; // System.Xml.WriteState[] struct WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF; // System.Xml.XmlAttribute[] struct XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40; // System.Xml.XmlQualifiedName[] struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1; // System.Xml.NameTable/Entry[] struct EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A; // System.Xml.XmlEventCache/XmlEvent[] struct XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2; // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60; // System.Xml.XmlSqlBinaryReader/AttrInfo[] struct AttrInfoU5BU5D_tE03F07A01FD491481AD6E60E9E172CC63CF0CF5B; // System.Xml.XmlSqlBinaryReader/ElemInfo[] struct ElemInfoU5BU5D_tC4C081494489517ABD5C5E1EE92F1336EAFC4BF3; // System.Xml.XmlSqlBinaryReader/QName[] struct QNameU5BU5D_tE6EE30AC34834B1416E7CB4152DB3C0904CBB684; // System.Xml.XmlTextReaderImpl/NodeData[] struct NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610; // System.Xml.XmlTextReaderImpl/ParsingState[] struct ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29; // System.Xml.XmlTextWriter/Namespace[] struct NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93; // System.Xml.XmlTextWriter/State[] struct StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858; // System.Xml.XmlTextWriter/TagInfo[] struct TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776; // System.Xml.XmlWellFormedWriter/AttrName[] struct AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983; // System.Xml.XmlWellFormedWriter/ElementScope[] struct ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9; // System.Xml.XmlWellFormedWriter/Namespace[] struct NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7; // System.Xml.XmlWellFormedWriter/State[] struct StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F; // System.Collections.ArrayList struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A; // System.Xml.AttributePSVIInfo struct AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE; // System.Xml.Base64Encoder struct Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2; // System.Xml.Schema.BaseValidator struct BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Xml.BitStack struct BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C; // System.Xml.ByteStack struct ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49; // System.Globalization.Calendar struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B; // System.Xml.CharEntityEncoderFallback struct CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1; // System.Xml.CharEntityEncoderFallbackBuffer struct CharEntityEncoderFallbackBuffer_t69D7BB5EC9D721D55AAA08793E60839B24332BE4; // System.Globalization.CodePageDataItem struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2; // System.Globalization.CompareInfo struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57; // System.Threading.ContextCallback struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007; // System.Globalization.CultureData struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A; // System.Text.Decoder struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC; // System.Text.DecoderFallback struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90; // System.Text.DecoderFallbackBuffer struct DecoderFallbackBuffer_t02E41C0BEC894A17CFE1A1FE88A2388DFDA05A73; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // System.Text.Encoder struct Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA; // System.Text.EncoderFallback struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293; // System.Text.EncoderFallbackBuffer struct EncoderFallbackBuffer_t2E7CD7B63BE916D5827701AC6AB8455673FB0281; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2; // System.Exception struct Exception_t; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D; // System.Xml.HtmlUtf8RawTextWriter struct HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850; // System.Xml.HtmlUtf8RawTextWriterIndent struct HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6; // System.Net.ICredentials struct ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.Xml.IDtdDefaultAttributeInfo struct IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613; // System.Xml.IDtdEntityInfo struct IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27; // System.Xml.IDtdInfo struct IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8; // System.Xml.IDtdParser struct IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B; // System.IFormatProvider struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52; // System.Xml.IValidationEventHandling struct IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E; // System.Net.IWebProxy struct IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D; // System.Xml.IXmlLineInfo struct IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05; // System.Xml.IXmlNamespaceResolver struct IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1; // System.Xml.Schema.IXmlSchemaInfo struct IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B; // System.Xml.IncrementalReadDummyDecoder struct IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Xml.NameTable struct NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472; // System.Xml.OnRemoveWriter struct OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F; // System.Xml.Schema.Parser struct Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07; // System.Xml.QueryOutputWriter struct QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2; // System.Xml.ReadContentAsBinaryHelper struct ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897; // System.Net.Cache.RequestCachePolicy struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550; // System.Xml.SafeAsciiDecoder struct SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553; // System.Xml.Schema.SchemaDeclBase struct SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD; // System.Xml.Schema.SchemaEntity struct SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7; // System.Xml.Schema.SchemaInfo struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E; // System.Xml.Schema.SchemaNames struct SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F; // System.Xml.SecureStringHasher struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2; // System.Collections.SortedList struct SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3; // System.Threading.Tasks.StackGuard struct StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.IO.StringWriter struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D; // System.Threading.Tasks.Task struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572; // System.Threading.Tasks.TaskFactory struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E; // System.Xml.TernaryTreeReadOnly struct TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608; // System.Xml.TextEncodedRawTextWriter struct TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01; // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4; // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7; // System.Xml.TextUtf8RawTextWriter struct TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73; // System.IO.TextWriter struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3; // System.Type struct Type_t; // System.Xml.UTF16Decoder struct UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227; // System.Text.UTF8Encoding struct UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE; // System.Xml.Ucs4Decoder struct Ucs4Decoder_t7D0437C862A46FB0EB97DEBA7C4660A781AD7F82; // System.Text.UnicodeEncoding struct UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0; // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E; // System.UriParser struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81; // System.Xml.ValidatingReaderNodeData struct ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C; // System.Xml.Schema.ValidationEventArgs struct ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // System.Xml.XmlAsyncCheckReader struct XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4; // System.Xml.XmlAsyncCheckReaderWithLineInfo struct XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE; // System.Xml.XmlAsyncCheckReaderWithLineInfoNS struct XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629; // System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema struct XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A; // System.Xml.XmlAsyncCheckReaderWithNS struct XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5; // System.Xml.XmlAsyncCheckWriter struct XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C; // System.Xml.XmlAutoDetectWriter struct XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA; // System.Xml.XmlEncodedRawTextWriter struct XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4; // System.Xml.XmlEncodedRawTextWriterIndent struct XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008; // System.Xml.XmlEventCache struct XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF; // System.Xml.XmlException struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596; // System.Xml.XmlNameTable struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F; // System.Xml.XmlParserContext struct XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9; // System.Xml.XmlRawWriter struct XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B; // System.Xml.XmlRawWriterBase64Encoder struct XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D; // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD; // System.Xml.XmlReaderSettings struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA; // System.Xml.XmlResolver struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF; // System.Xml.Schema.XmlSchema struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D; // System.Xml.Schema.XmlSchemaAnnotation struct XmlSchemaAnnotation_t35947D4DA687AA3C531135CEC5EBE7AB1C3EF821; // System.Xml.Schema.XmlSchemaAttribute struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F; // System.Xml.Schema.XmlSchemaCollection struct XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD; // System.Xml.Schema.XmlSchemaCompilationSettings struct XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D; // System.Xml.Schema.XmlSchemaElement struct XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B; // System.Xml.Schema.XmlSchemaInfo struct XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D; // System.Xml.Schema.XmlSchemaObjectCollection struct XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388; // System.Xml.Schema.XmlSchemaObjectTable struct XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8; // System.Xml.Schema.XmlSchemaSimpleTypeContent struct XmlSchemaSimpleTypeContent_t84C9B4F059E687FBF7845373F5A6B2795F982091; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF; // System.Xml.Schema.XmlSchemaValidator struct XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24; // System.Xml.Serialization.XmlSerializerNamespaces struct XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93; // System.Xml.XmlSqlBinaryReader struct XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8; // System.Xml.XmlTextEncoder struct XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40; // System.Xml.XmlTextReader struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B; // System.Xml.XmlTextWriter struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B; // System.Xml.XmlTextWriterBase64Encoder struct XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D; // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E; // System.Xml.XmlUtf8RawTextWriter struct XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB; // System.Xml.XmlValidatingReader struct XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9; // System.Xml.XmlValidatingReaderImpl struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8; // System.Xml.Schema.XmlValueGetter struct XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9; // System.Xml.XmlWellFormedWriter struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645; // System.Xml.XmlWriter struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F; // System.Xml.XmlWriterSettings struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674; // System.Xml.XsdCachingReader struct XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43; // System.Xml.XsdValidatingReader struct XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540; // System.Text.UTF8Encoding/UTF8EncodingSealed struct UTF8EncodingSealed_tF97A34F40CABE9CE1C168967D60396F51C43DD36; // System.Uri/UriInfo struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09; // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA; // System.Xml.XmlSqlBinaryReader/NestedBinXml struct NestedBinXml_tD04A5F6B7E2EC9CEA75A974F184707131FFF6EF8; // System.Xml.XmlTextReaderImpl/DtdParserProxy struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3; // System.Xml.XmlTextReaderImpl/LaterInitParam struct LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6; // System.Xml.XmlTextReaderImpl/NoNamespaceManager struct NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4; // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate struct OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499; // System.Xml.XmlTextReaderImpl/XmlContext struct XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE; // System.Xml.XmlValidatingReaderImpl/ValidationEventHandling struct ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9; // System.Xml.XmlWellFormedWriter/AttributeValueCache struct AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdAttributeListInfo_t07FD0314BEFEF9941C7CEC6F2944B28AD50F979F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t055C83CBB6D9B0D62F3BFC9AC8A5169CA06B72E3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tD2D98CA9C23AE3358DD671D9F760AF794EF0712B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_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* StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral010415DFD810DA785E5CD8173EA9688EDA5E73FE; IL2CPP_EXTERN_C String_t* _stringLiteral025C1ECF21AD54C7CC6639C629602C3F7FE62FAA; IL2CPP_EXTERN_C String_t* _stringLiteral03122A403A679966DEF28BDE4E3CA2CDC2A2390A; IL2CPP_EXTERN_C String_t* _stringLiteral035877D5564A6EA6B11C79A48808B85A323C2F5C; IL2CPP_EXTERN_C String_t* _stringLiteral03B045FCD10ECF188A204F5155B713E46FEAC4DE; IL2CPP_EXTERN_C String_t* _stringLiteral044BADD70F84141B60AE555B5513ABA7D660F738; IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626; IL2CPP_EXTERN_C String_t* _stringLiteral08225942B0A6237A26F3F6162356652870EA9AD9; IL2CPP_EXTERN_C String_t* _stringLiteral0D929AD36283A98F5B0551589A84C83B5EA0ED79; IL2CPP_EXTERN_C String_t* _stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09; IL2CPP_EXTERN_C String_t* _stringLiteral0DDD59971908C2866702474E28490B7C5C1356ED; IL2CPP_EXTERN_C String_t* _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4; IL2CPP_EXTERN_C String_t* _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11; IL2CPP_EXTERN_C String_t* _stringLiteral11FD22D825C5C7EEDE7CA43876F02B7D8B4C213F; IL2CPP_EXTERN_C String_t* _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3; IL2CPP_EXTERN_C String_t* _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8; IL2CPP_EXTERN_C String_t* _stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2; IL2CPP_EXTERN_C String_t* _stringLiteral168C49673280639EC773D92BF193FBACAED8BF52; IL2CPP_EXTERN_C String_t* _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B; IL2CPP_EXTERN_C String_t* _stringLiteral17372CA6EE06884491DF8D3AEFE02DC203DF0717; IL2CPP_EXTERN_C String_t* _stringLiteral180A67848B5A57936F7A288C7C73E3F33BFFCDF4; IL2CPP_EXTERN_C String_t* _stringLiteral192210AFEA7A44FE2FFAB4A93D05261DB2757891; IL2CPP_EXTERN_C String_t* _stringLiteral1A80D09E42ECF83939C0550908D8E7889359C8D8; IL2CPP_EXTERN_C String_t* _stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E; IL2CPP_EXTERN_C String_t* _stringLiteral1C250646ACB5EAA28E079007EF6B9BECFDAEDC6E; IL2CPP_EXTERN_C String_t* _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29; IL2CPP_EXTERN_C String_t* _stringLiteral1E4C0425B0E62AF487F3C7EDEFADC20B938C9A03; IL2CPP_EXTERN_C String_t* _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91; IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E; IL2CPP_EXTERN_C String_t* _stringLiteral226FFA80152D23D5393D03AF02D1C90D7880F548; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral27EFD03821B8E8379AA7D14DB641482FB950DF7B; IL2CPP_EXTERN_C String_t* _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C; IL2CPP_EXTERN_C String_t* _stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613; IL2CPP_EXTERN_C String_t* _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral2C444E82A2EF8AEC533AC89C8394A988DC706B88; IL2CPP_EXTERN_C String_t* _stringLiteral2CC07AF4C3868561B4298BB54D24B5A984DBC70D; IL2CPP_EXTERN_C String_t* _stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED; IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917; IL2CPP_EXTERN_C String_t* _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9; IL2CPP_EXTERN_C String_t* _stringLiteral36D06DCF7061DEC1E8DF4C9D2BB8EB53DBD3087E; IL2CPP_EXTERN_C String_t* _stringLiteral37A05C2D8FD93BC463950C5DDF58614B3DEDE3EA; IL2CPP_EXTERN_C String_t* _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0; IL2CPP_EXTERN_C String_t* _stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D; IL2CPP_EXTERN_C String_t* _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0; IL2CPP_EXTERN_C String_t* _stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5; IL2CPP_EXTERN_C String_t* _stringLiteral3D3A6937948B511C58F902D4F718201A18C1E9ED; IL2CPP_EXTERN_C String_t* _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F; IL2CPP_EXTERN_C String_t* _stringLiteral3EF4F70676F5F18B8797A6624726002F607BB8DE; IL2CPP_EXTERN_C String_t* _stringLiteral41EF1659C5E772235CFEA4B5A94D5DF6799C5608; IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE; IL2CPP_EXTERN_C String_t* _stringLiteral423005E70CFADA0548835DDF582542DD5BDCFBD3; IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral4C9D5EB3A2133DCF493D42AFE0769A5D81E10AF1; IL2CPP_EXTERN_C String_t* _stringLiteral4E1D57CE6B85658D066056F8AB14C7463911E2B2; IL2CPP_EXTERN_C String_t* _stringLiteral4F0ED44759FB9D445390E9BFD2CE4A97F58BBBA9; IL2CPP_EXTERN_C String_t* _stringLiteral50709161A683107F88DF833963D6907320EB2D94; IL2CPP_EXTERN_C String_t* _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12; IL2CPP_EXTERN_C String_t* _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18; IL2CPP_EXTERN_C String_t* _stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4; IL2CPP_EXTERN_C String_t* _stringLiteral5520F0EAC899C656D9482CE97A660E8F8E28ED01; IL2CPP_EXTERN_C String_t* _stringLiteral5591FEB8D450C0589982D61E5715CF6270C18952; IL2CPP_EXTERN_C String_t* _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF; IL2CPP_EXTERN_C String_t* _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B; IL2CPP_EXTERN_C String_t* _stringLiteral6A296BDE05384B1131431F0CFA2EB755E12F20E4; IL2CPP_EXTERN_C String_t* _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB; IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044; IL2CPP_EXTERN_C String_t* _stringLiteral72890B3416E9451EAEDCB2D432F0737DCEFD53AA; IL2CPP_EXTERN_C String_t* _stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F; IL2CPP_EXTERN_C String_t* _stringLiteral7445C16916FA3BA29CF130D3BC44506627A580F8; IL2CPP_EXTERN_C String_t* _stringLiteral7555A381F6A885BD4329663AA477583D04E3F792; IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D; IL2CPP_EXTERN_C String_t* _stringLiteral7721A48ACA2DB6CF7BA1F50E38BE38587D4927BA; IL2CPP_EXTERN_C String_t* _stringLiteral77D2BCBCC0DB06E7D1FE3B24D38EDC45C54A7D7B; IL2CPP_EXTERN_C String_t* _stringLiteral77F4DA4A27A2604AE091F96D9703D92D3E929C3B; IL2CPP_EXTERN_C String_t* _stringLiteral7A03FF5EFAA03F04AAF57CFC6DCE17560E6F3030; IL2CPP_EXTERN_C String_t* _stringLiteral7A597BBB5531C860DA6FB2829441767F611CCFCC; IL2CPP_EXTERN_C String_t* _stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13; IL2CPP_EXTERN_C String_t* _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49; IL2CPP_EXTERN_C String_t* _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C; IL2CPP_EXTERN_C String_t* _stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06; IL2CPP_EXTERN_C String_t* _stringLiteral7EBD7E5381F20CF05FF54841BB8BD75F2397E0CA; IL2CPP_EXTERN_C String_t* _stringLiteral81C6A150C740E85EF7BDB2DE76CBED7BCCC3797F; IL2CPP_EXTERN_C String_t* _stringLiteral831ED6EC0D1759EC26A1E876BA9836719586C6D1; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral887708FAE81F8854FED4472593567E230376CF20; IL2CPP_EXTERN_C String_t* _stringLiteral88E0DBECA18651C0DE1E09C9B180E8C851A4F92B; IL2CPP_EXTERN_C String_t* _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406; IL2CPP_EXTERN_C String_t* _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA; IL2CPP_EXTERN_C String_t* _stringLiteral8C301B74DC1621E41EEBD8B5B23916680BB45ACF; IL2CPP_EXTERN_C String_t* _stringLiteral8D96BC4C9C4D627F523AF7B934DE107E1359C50F; IL2CPP_EXTERN_C String_t* _stringLiteral8DBC0541C87F546156D168685887CFF3444537CD; IL2CPP_EXTERN_C String_t* _stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989; IL2CPP_EXTERN_C String_t* _stringLiteral909AA3EFEECF6508CFB6F17EDD057508FF1D7D17; IL2CPP_EXTERN_C String_t* _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48; IL2CPP_EXTERN_C String_t* _stringLiteral93B59C6870171FCFAA8A0D2F3A21C5B0CEFC7FDD; IL2CPP_EXTERN_C String_t* _stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E; IL2CPP_EXTERN_C String_t* _stringLiteral9413AC7CF6AB7E9B088B38F9FF76860CC990A952; IL2CPP_EXTERN_C String_t* _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3; IL2CPP_EXTERN_C String_t* _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956; IL2CPP_EXTERN_C String_t* _stringLiteral96065EF4DC93B53D7A1F952FADF4921C43506B4C; IL2CPP_EXTERN_C String_t* _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62; IL2CPP_EXTERN_C String_t* _stringLiteral982749A67A420D262D8B02D1D5E75C097587CD3A; IL2CPP_EXTERN_C String_t* _stringLiteral99EFCE42C9A728EA7C113BD7034366462E5E09E6; IL2CPP_EXTERN_C String_t* _stringLiteral99F19C3C64E4DA42B933F242D187F672BFE457C6; IL2CPP_EXTERN_C String_t* _stringLiteral9AFA0F72F280AF1D61641FD81B06319BC977BCDA; IL2CPP_EXTERN_C String_t* _stringLiteral9BBA939AADAC7131171CCBDAAF0369B087259893; IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; IL2CPP_EXTERN_C String_t* _stringLiteral9CEED7FBCC48F5EFBFF9645E724BBF3DBFF0A118; IL2CPP_EXTERN_C String_t* _stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596; IL2CPP_EXTERN_C String_t* _stringLiteral9FD9B00B05227B64D8B46A29B6D1B4FEA2C197EF; IL2CPP_EXTERN_C String_t* _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36; IL2CPP_EXTERN_C String_t* _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C; IL2CPP_EXTERN_C String_t* _stringLiteralA3C584A3FE105AEB412E76816EDB194C2C149E6E; IL2CPP_EXTERN_C String_t* _stringLiteralA99D512DBB15CEE509B88EBCE4AB195F07681F44; IL2CPP_EXTERN_C String_t* _stringLiteralAC5E32C47A7BDB12A3CFA3FAD891E5A0B2E18DE3; IL2CPP_EXTERN_C String_t* _stringLiteralB040418CA8E9ED382EC72BF18BDDDFBD260DCBDC; IL2CPP_EXTERN_C String_t* _stringLiteralB04A560846A93D4D813C44EFBD0968D2875C5049; IL2CPP_EXTERN_C String_t* _stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72; IL2CPP_EXTERN_C String_t* _stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9; IL2CPP_EXTERN_C String_t* _stringLiteralB603F7761557E583DBBFB1003B4DE31A31F87868; IL2CPP_EXTERN_C String_t* _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05; IL2CPP_EXTERN_C String_t* _stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7; IL2CPP_EXTERN_C String_t* _stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9; IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED; IL2CPP_EXTERN_C String_t* _stringLiteralB968B651B32BD07EAAB4CB96683980AF16C47C0B; IL2CPP_EXTERN_C String_t* _stringLiteralBA35549D8219B5F5409D55485656844283EB1A95; IL2CPP_EXTERN_C String_t* _stringLiteralBBF707DBD2474C67BE1EDEC6AEE1A9B0F7A9E60D; IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; IL2CPP_EXTERN_C String_t* _stringLiteralBF8B5610C2E749CDA971813F2601B7DDAF980B54; IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10; IL2CPP_EXTERN_C String_t* _stringLiteralC322EB89F06EA9126EEB00F7CCE625D04A1EA9F4; IL2CPP_EXTERN_C String_t* _stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E; IL2CPP_EXTERN_C String_t* _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC; IL2CPP_EXTERN_C String_t* _stringLiteralC592433F40777E06F184EC2C93B0E9661B2FC834; IL2CPP_EXTERN_C String_t* _stringLiteralC5A01712EB283A85C1F3D5A52F99E9B7360723B9; IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677; IL2CPP_EXTERN_C String_t* _stringLiteralC79B5A2B53BE125CE49A7A44CDB786AE5BA7E9D1; IL2CPP_EXTERN_C String_t* _stringLiteralC7A4DCEE2BCE29D8E3625DA7D1C87881873A907C; IL2CPP_EXTERN_C String_t* _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B; IL2CPP_EXTERN_C String_t* _stringLiteralC872A8527B3262EA83113D74202CF9CBCE3B0772; IL2CPP_EXTERN_C String_t* _stringLiteralCA05288B6212EA20126730A5B780745B08DD3D36; IL2CPP_EXTERN_C String_t* _stringLiteralCAFD5B1578BE15D85E6DD4147D5AE04B0EF57878; IL2CPP_EXTERN_C String_t* _stringLiteralCCF7B3DD0886B6E6F35A2244E2D4C28889290AFE; IL2CPP_EXTERN_C String_t* _stringLiteralCE60ED23C56E9CE0BE0D8C64F903A987CC2AD1F0; IL2CPP_EXTERN_C String_t* _stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F; IL2CPP_EXTERN_C String_t* _stringLiteralCEE3B2EB07697A8538A5981905EA8D1A1753B51D; IL2CPP_EXTERN_C String_t* _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A; IL2CPP_EXTERN_C String_t* _stringLiteralD27E638C5F6B34DE55DDC1E7B33B6C164CB88CAC; IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052; IL2CPP_EXTERN_C String_t* _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560; IL2CPP_EXTERN_C String_t* _stringLiteralD515C8E4D2BD0B64EE134AD25058BE95BF0175BC; IL2CPP_EXTERN_C String_t* _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE; IL2CPP_EXTERN_C String_t* _stringLiteralD7BB4816F511937863E42D9A34BAB32B43210AE7; IL2CPP_EXTERN_C String_t* _stringLiteralD9319D8D06606B8F2B10B57EBAABAE57F7D5B8E7; IL2CPP_EXTERN_C String_t* _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2; IL2CPP_EXTERN_C String_t* _stringLiteralE17BBA8A473D59FFCC3E1CE5B765B2C174385B7F; IL2CPP_EXTERN_C String_t* _stringLiteralE17D434C0318F5D8C5525CEDDC1852394290CA23; IL2CPP_EXTERN_C String_t* _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD; IL2CPP_EXTERN_C String_t* _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; IL2CPP_EXTERN_C String_t* _stringLiteralE36FB54A26012ED331BC4EAA26E3796844CF0590; IL2CPP_EXTERN_C String_t* _stringLiteralE577106AF74D4E432DDB4785DA3B2BE486F67838; IL2CPP_EXTERN_C String_t* _stringLiteralE584C9688DCC7AEE34F2DA73D96EA113B211A93D; IL2CPP_EXTERN_C String_t* _stringLiteralE5E2DECD6397CBF8168176B1CB6CB4B7A4984E43; IL2CPP_EXTERN_C String_t* _stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF; IL2CPP_EXTERN_C String_t* _stringLiteralE6EBEC5243A7F1F4EC60D6ADEFEEC1D5A655AA46; IL2CPP_EXTERN_C String_t* _stringLiteralE9BAFB0222941360F2752ADB95BF13DFDF07C373; IL2CPP_EXTERN_C String_t* _stringLiteralEA9861AB400894B6A90D438BF33D1986E5E7927B; IL2CPP_EXTERN_C String_t* _stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292; IL2CPP_EXTERN_C String_t* _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D; IL2CPP_EXTERN_C String_t* _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331; IL2CPP_EXTERN_C String_t* _stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003; IL2CPP_EXTERN_C String_t* _stringLiteralEF773281DF3C0FFE95AB2CE662598454A2DD1214; IL2CPP_EXTERN_C String_t* _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5; IL2CPP_EXTERN_C String_t* _stringLiteralF12E59379196681BB583947C4CA20072F667A2DD; IL2CPP_EXTERN_C String_t* _stringLiteralF138E7719F7B2C087914A020E21C85F0382BCBE4; IL2CPP_EXTERN_C String_t* _stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54; IL2CPP_EXTERN_C String_t* _stringLiteralF3782EC504B73600A2DA83B623313BF6EC38CAE3; IL2CPP_EXTERN_C String_t* _stringLiteralF3CC44E677A8425D56C2E976CEE5C70648FC3B9F; IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D; IL2CPP_EXTERN_C String_t* _stringLiteralF4ED3BDF7EB24796E98DB0F3022D762D2C5EBFB0; IL2CPP_EXTERN_C String_t* _stringLiteralF5979AB58C12081193D7D5D578C3378FAF6395E9; IL2CPP_EXTERN_C String_t* _stringLiteralF802447DCA401035D8E475710B790B206A9A34EF; IL2CPP_EXTERN_C String_t* _stringLiteralF93620B79D24EBDD0BBA22E51773F74952724C63; IL2CPP_EXTERN_C String_t* _stringLiteralF9AF2888151C96525F9312E8AA41CFF3F0B3CDD9; IL2CPP_EXTERN_C String_t* _stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21; IL2CPP_EXTERN_C String_t* _stringLiteralFD8C61EC8DBC1376295F70EFEF4B5FDF50F09FBE; IL2CPP_EXTERN_C String_t* _stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD; IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisNodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_m89C5DC5A1ACC546949B0964C6AB1CE054488C03B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m6B646FC3E69ADA1E841FA6878E43A4EBEDEE6AB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m400FFF2A30F886D75808F2253ED971B963BFD133_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m5CEBA3CC956CC2C106666A910118133F1E696D84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m37E94DC039C08FA639889E09411C8BC5730643B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6210F59C2C6D70022557B14383A77B307D8E5E4A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m9B62B0AF42B8D720A217CCF7D03D8242D1D7FA4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mD4F20774F164452D05D56D2A3101DC82B30F762D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mC605D2D31727D8396798863F0D14AB7F45E74EA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD2119FFD872E74A6F4997BB265A66364DB3471A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mC4F2F141ED84510A73B235D519BCFD8FE1FF5BD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m568CB3E67C19B9174F2AD57A64A72D95F93191A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC3AA2A570543C0B07E620F2C594BD268BF5819C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m2DA323B178A37D487CFE4D93F59290B37468AE6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m3104C5DB2248D9BA223DD03C2192F5FFC916FE36_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_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* QueryOutputWriter_Close_mEFE15AFB05D8F870AE6B22D6B546116638BC4168_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* QueryOutputWriter_WriteStartElement_mAE7A423ED1299999A971702E5C711D1DB7FB9FED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SecureStringHasher_GetHashCodeOfString_mBBD10280C76FF68FD4EFDBBABC576489A7FC209B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEncodedRawTextWriter_FlushBuffer_mDFE298B4E2182ABDE3C497E10252BBF6D73B7C3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEncodedRawTextWriter_WriteCharEntity_mA93124CDD6A6DFD37DFA3F612C1911DF98CFE434_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_LookupPrefix_mB3E13044C336CFD95B53CCED74520A5C8E6CF72F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteAttributes_mA0FBB2A1847FBBFA368194E34EA8F56C751357EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteEndDocument_m00B0FFF19C0A850E4BD504C7BF9105A9AD2ED3ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteEndElement_m768234DAF614CA5E82428BA65591838DE758E189_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteEndNamespaceDeclaration_mF3C8681D7C4A193AAD6B86AEAE99BF4A8D17E616_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteFullEndElement_mAC4BEC5490F30322867F31C8A594FAE4DD597DD1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteNode_mAEAAFB5FA3834598FAD69B9A7C937E2D7135D824_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteStartDocument_m06A9651D246C12C39727CDC1FA3A4E9A701F4BA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteStartDocument_m6C1C6E7A7399715D344878C22F801FE8A492A0C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_WriteStartNamespaceDeclaration_m73DD1FCBC687FF7D182AE743EC5A3FF2408FD298_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlRawWriter_get_WriteState_mA2067433E589B1EE6D4BC1754826DA6F3429CAFD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_CreateReader_m1B17CDEFA24FB4173AE91DCA3BDA012B1338BD36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_CreateReader_m28F51E3D8AB4BC9B04D23C0AF9DD99940D8E28D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_ValidationFlags_m846A17F2EB68AF5C850CDE3CA8218B2D6A400A02_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_ValidationType_m651D049117DA5C80F75BEB925AB0E1FE40E25620_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_CreateSqlReader_m68B4218BAA67D8197BA207D8337DCADC0C037721_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_MoveToAttribute_m4A3E26486933DA79ED85C63FD86DE1D0A7414E10_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_ReadElementString_mADA8000290EE0555D50AE32B405F4871BD4A97DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_ReadEndElement_m7205BEED63D93DC0B32DC00BD811A78475C2E675_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_ReadStartElement_m91C35D061592E8327FF677129BC412DBC75502BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_ReadValueChunk_mB73AAFE56A79DABFE5411D6C4B38D96752CD9CEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_WriteCharEntity_m591FE258908A35F6DD68111001E3F753603A83EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_WriteSurrogateCharEntity_mA18F7DC2EB852A7313F82E2AD7B2F9B9BBD537B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_WriteSurrogateChar_m81A912C37647DE260C756097A6188DFA25BB1EDB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_DtdParserProxy_ParseComment_mC220CD16264F0F8C4F26103E91CB932FC16A6539_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_FinishInitUriString_m9D1EAAEBEB54E573AA246ECB98CE152B24D576FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_GetAttribute_m1F3DD4202A6159563B6AA1431820E1F1DD186455_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_MoveOffEntityReference_mA1A8FFC9F91F041D85E01D350BB3824E6534A1B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_MoveToAttribute_mF39924084B62FBC5C5BBE0768E69CAF00F031DAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_OpenUrl_m0BF6C0850B8AD63E0DEDA911664D51C59A8FD480_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_PushExternalEntityOrSubset_m6512BA1B5A447175E8A0B00D75A62D25F04E8BA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_ResolveEntity_m01A84F03DB27E7C92857613DB9FE549C21F9307D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_SetupFromParserContext_mF77555EDF43C9D83D93F376F3A446C4824C1C2FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_set_Normalization_mD7A69A6E43CDBC34521C920727D6981675EA87EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextReaderImpl_set_WhitespaceHandling_mF03CD74F490259694D1CF7D60C5EC59CEA03B267_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_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 QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156_marshaled_com; struct QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156_marshaled_pinvoke; struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; struct XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2; struct NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610; struct ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29; 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.Dictionary`2 struct Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_t161EBC349138D60E4EE81A9F043A7482748964A9* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::_comparer RuntimeObject* ____comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::_keys KeyCollection_t1C4AC9AF598F91960DA77C27B6164094A0C0334C* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t165FF65BBECE9C225DC52130BF97ED925E5A9133* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426 : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_tE8E657708760F70661F9043B5C9560E99DF8AFF9* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::_comparer RuntimeObject* ____comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::_keys KeyCollection_t675335DE0343264EE07C7C3CCEA564A8CE5C8C2F* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_tBCDB47EC8418220AE86D165C5F101EE22C27DB75* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.List`1 struct List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items XmlEventU5BU5DU5BU5D_t9F35C036D5CCAA8FC5C5D664E53DE22A8D223BFA* ____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_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray XmlEventU5BU5DU5BU5D_t9F35C036D5CCAA8FC5C5D664E53DE22A8D223BFA* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* ____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_t43EC7C138A17FAAD7120408F039923082A70301A_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* ___s_emptyArray_5; }; // System.Tuple`4 struct Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9 : public RuntimeObject { // T1 System.Tuple`4::m_Item1 int32_t ___m_Item1_0; // T2 System.Tuple`4::m_Item2 int32_t ___m_Item2_1; // T3 System.Tuple`4::m_Item3 int32_t ___m_Item3_2; // T4 System.Tuple`4::m_Item4 bool ___m_Item4_3; }; struct Il2CppArrayBounds; // System.Xml.AsyncHelper struct AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB : public RuntimeObject { }; struct AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_StaticFields { // System.Threading.Tasks.Task System.Xml.AsyncHelper::DoneTask Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___DoneTask_0; // System.Threading.Tasks.Task`1 System.Xml.AsyncHelper::DoneTaskTrue Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___DoneTaskTrue_1; // System.Threading.Tasks.Task`1 System.Xml.AsyncHelper::DoneTaskFalse Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___DoneTaskFalse_2; // System.Threading.Tasks.Task`1 System.Xml.AsyncHelper::DoneTaskZero Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___DoneTaskZero_3; }; // System.Xml.AttributePSVIInfo struct AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE : public RuntimeObject { // System.String System.Xml.AttributePSVIInfo::localName String_t* ___localName_0; // System.String System.Xml.AttributePSVIInfo::namespaceUri String_t* ___namespaceUri_1; // System.Object System.Xml.AttributePSVIInfo::typedAttributeValue RuntimeObject* ___typedAttributeValue_2; // System.Xml.Schema.XmlSchemaInfo System.Xml.AttributePSVIInfo::attributeSchemaInfo XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___attributeSchemaInfo_3; }; // System.Xml.Base64Encoder struct Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2 : public RuntimeObject { // System.Byte[] System.Xml.Base64Encoder::leftOverBytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___leftOverBytes_0; // System.Int32 System.Xml.Base64Encoder::leftOverBytesCount int32_t ___leftOverBytesCount_1; // System.Char[] System.Xml.Base64Encoder::charsLine CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___charsLine_2; }; // System.Xml.BitStack struct BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C : public RuntimeObject { // System.UInt32[] System.Xml.BitStack::bitStack UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___bitStack_0; // System.Int32 System.Xml.BitStack::stackPos int32_t ___stackPos_1; // System.UInt32 System.Xml.BitStack::curr uint32_t ___curr_2; }; // System.Xml.ByteStack struct ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49 : public RuntimeObject { // System.Byte[] System.Xml.ByteStack::stack ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___stack_0; // System.Int32 System.Xml.ByteStack::growthRate int32_t ___growthRate_1; // System.Int32 System.Xml.ByteStack::top int32_t ___top_2; // System.Int32 System.Xml.ByteStack::size int32_t ___size_3; }; // 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.Globalization.CultureInfo::shared_by_number Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37; // System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_39; }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Text.Decoder struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC : public RuntimeObject { // System.Text.DecoderFallback System.Text.Decoder::_fallback DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ____fallback_0; // System.Text.DecoderFallbackBuffer System.Text.Decoder::_fallbackBuffer DecoderFallbackBuffer_t02E41C0BEC894A17CFE1A1FE88A2388DFDA05A73* ____fallbackBuffer_1; }; // System.Text.Encoder struct Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA : public RuntimeObject { // System.Text.EncoderFallback System.Text.Encoder::_fallback EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ____fallback_0; // System.Text.EncoderFallbackBuffer System.Text.Encoder::_fallbackBuffer EncoderFallbackBuffer_t2E7CD7B63BE916D5827701AC6AB8455673FB0281* ____fallbackBuffer_1; }; // System.Text.EncoderFallback struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293 : public RuntimeObject { }; struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293_StaticFields { // System.Text.EncoderFallback System.Text.EncoderFallback::s_replacementFallback EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___s_replacementFallback_0; // System.Text.EncoderFallback System.Text.EncoderFallback::s_exceptionFallback EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___s_exceptionFallback_1; }; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject { // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14; }; struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields { // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7; // System.Collections.Generic.Dictionary`2 modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject* ___s_InternalSyncObject_15; }; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B : public RuntimeObject { }; // System.LocalAppContextSwitches struct LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434 : public RuntimeObject { }; struct LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_StaticFields { // System.Boolean System.LocalAppContextSwitches::IgnoreEmptyKeySequences bool ___IgnoreEmptyKeySequences_0; // System.Boolean System.LocalAppContextSwitches::DontThrowOnInvalidSurrogatePairs bool ___DontThrowOnInvalidSurrogatePairs_1; }; // System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject { // System.Object System.MarshalByRefObject::_identity RuntimeObject* ____identity_0; }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // System.Xml.Schema.SchemaEntity struct SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7 : public RuntimeObject { // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::qname XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_0; // System.String System.Xml.Schema.SchemaEntity::url String_t* ___url_1; // System.String System.Xml.Schema.SchemaEntity::pubid String_t* ___pubid_2; // System.String System.Xml.Schema.SchemaEntity::text String_t* ___text_3; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::ndata XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___ndata_4; // System.Int32 System.Xml.Schema.SchemaEntity::lineNumber int32_t ___lineNumber_5; // System.Int32 System.Xml.Schema.SchemaEntity::linePosition int32_t ___linePosition_6; // System.Boolean System.Xml.Schema.SchemaEntity::isParameter bool ___isParameter_7; // System.Boolean System.Xml.Schema.SchemaEntity::isExternal bool ___isExternal_8; // System.Boolean System.Xml.Schema.SchemaEntity::parsingInProgress bool ___parsingInProgress_9; // System.Boolean System.Xml.Schema.SchemaEntity::isDeclaredInExternal bool ___isDeclaredInExternal_10; // System.String System.Xml.Schema.SchemaEntity::baseURI String_t* ___baseURI_11; // System.String System.Xml.Schema.SchemaEntity::declaredURI String_t* ___declaredURI_12; }; // System.Xml.SecureStringHasher struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E : public RuntimeObject { // System.Int32 System.Xml.SecureStringHasher::hashCodeRandomizer int32_t ___hashCodeRandomizer_1; }; struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_StaticFields { // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::hashCodeDelegate HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* ___hashCodeDelegate_0; }; // 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.TernaryTreeReadOnly struct TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608 : public RuntimeObject { // System.Byte[] System.Xml.TernaryTreeReadOnly::nodeBuffer ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___nodeBuffer_0; }; // System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject { }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com { }; // System.Xml.XmlNameTable struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8 : public RuntimeObject { }; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F : public RuntimeObject { // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] System.Xml.XmlNamespaceManager::nsdecls NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60* ___nsdecls_0; // System.Int32 System.Xml.XmlNamespaceManager::lastDecl int32_t ___lastDecl_1; // System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_2; // System.Int32 System.Xml.XmlNamespaceManager::scopeId int32_t ___scopeId_3; // System.Collections.Generic.Dictionary`2 System.Xml.XmlNamespaceManager::hashTable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___hashTable_4; // System.Boolean System.Xml.XmlNamespaceManager::useHashtable bool ___useHashtable_5; // System.String System.Xml.XmlNamespaceManager::xml String_t* ___xml_6; // System.String System.Xml.XmlNamespaceManager::xmlNs String_t* ___xmlNs_7; }; // 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.XmlResolver struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF : public RuntimeObject { }; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D : public RuntimeObject { }; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D : public RuntimeObject { // System.Int32 System.Xml.Schema.XmlSchemaObject::lineNum int32_t ___lineNum_0; // System.Int32 System.Xml.Schema.XmlSchemaObject::linePos int32_t ___linePos_1; // System.String System.Xml.Schema.XmlSchemaObject::sourceUri String_t* ___sourceUri_2; // System.Xml.Serialization.XmlSerializerNamespaces System.Xml.Schema.XmlSchemaObject::namespaces XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___namespaces_3; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObject::parent XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___parent_4; // System.Boolean System.Xml.Schema.XmlSchemaObject::isProcessing bool ___isProcessing_5; }; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1 : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaSet::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0; // System.Xml.Schema.SchemaNames System.Xml.Schema.XmlSchemaSet::schemaNames SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames_1; // System.Collections.SortedList System.Xml.Schema.XmlSchemaSet::schemas SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3* ___schemas_2; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::internalEventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___internalEventHandler_3; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::eventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_4; // System.Boolean System.Xml.Schema.XmlSchemaSet::isCompiled bool ___isCompiled_5; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::schemaLocations Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___schemaLocations_6; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::chameleonSchemas Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___chameleonSchemas_7; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::targetNamespaces Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___targetNamespaces_8; // System.Boolean System.Xml.Schema.XmlSchemaSet::compileAll bool ___compileAll_9; // System.Xml.Schema.SchemaInfo System.Xml.Schema.XmlSchemaSet::cachedCompiledInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___cachedCompiledInfo_10; // System.Xml.XmlReaderSettings System.Xml.Schema.XmlSchemaSet::readerSettings XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings_11; // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaSet::schemaForSchema XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ___schemaForSchema_12; // System.Xml.Schema.XmlSchemaCompilationSettings System.Xml.Schema.XmlSchemaSet::compilationSettings XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C* ___compilationSettings_13; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::elements XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___elements_14; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::attributes XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributes_15; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::schemaTypes XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___schemaTypes_16; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::substitutionGroups XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___substitutionGroups_17; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::typeExtensions XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___typeExtensions_18; // System.Object System.Xml.Schema.XmlSchemaSet::internalSyncObject RuntimeObject* ___internalSyncObject_19; }; // System.Xml.XmlWriter struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F : public RuntimeObject { // System.Char[] System.Xml.XmlWriter::writeNodeBuffer CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeNodeBuffer_0; }; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1 : public RuntimeObject { }; struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields { // System.Collections.Generic.IComparer`1 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::s_instance RuntimeObject* ___s_instance_0; }; // System.Xml.XmlTextReaderImpl/DtdParserProxy struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3 : public RuntimeObject { // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReaderImpl/DtdParserProxy::reader XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___reader_0; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A { // System.Collections.Generic.List`1 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 struct Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t43EC7C138A17FAAD7120408F039923082A70301A* ____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 XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ____current_3; }; // System.Nullable`1 struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value bool ___value_1; }; // System.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.Xml.CharEntityEncoderFallback struct CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1 : public EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293 { // System.Xml.CharEntityEncoderFallbackBuffer System.Xml.CharEntityEncoderFallback::fallbackBuffer CharEntityEncoderFallbackBuffer_t69D7BB5EC9D721D55AAA08793E60839B24332BE4* ___fallbackBuffer_2; // System.Int32[] System.Xml.CharEntityEncoderFallback::textContentMarks Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___textContentMarks_3; // System.Int32 System.Xml.CharEntityEncoderFallback::endMarkPos int32_t ___endMarkPos_4; // System.Int32 System.Xml.CharEntityEncoderFallback::curMarkPos int32_t ___curMarkPos_5; // System.Int32 System.Xml.CharEntityEncoderFallback::startOffset int32_t ___startOffset_6; }; // 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.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.IncrementalReadDummyDecoder struct IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86 : public IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B { }; // 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.LineInfo struct LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 { // System.Int32 System.Xml.LineInfo::lineNo int32_t ___lineNo_0; // System.Int32 System.Xml.LineInfo::linePos int32_t ___linePos_1; }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { }; // System.Xml.NameTable struct NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46 : public XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8 { // System.Xml.NameTable/Entry[] System.Xml.NameTable::entries EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* ___entries_0; // System.Int32 System.Xml.NameTable::count int32_t ___count_1; // System.Int32 System.Xml.NameTable::mask int32_t ___mask_2; // System.Int32 System.Xml.NameTable::hashCodeRandomizer int32_t ___hashCodeRandomizer_3; }; // System.Xml.SafeAsciiDecoder struct SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23 : public Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC { }; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3; }; struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields { // System.IO.Stream System.IO.Stream::Null Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1; }; // System.Xml.Xsl.Runtime.StringConcat struct StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9 { // System.String System.Xml.Xsl.Runtime.StringConcat::s1 String_t* ___s1_0; // System.String System.Xml.Xsl.Runtime.StringConcat::s2 String_t* ___s2_1; // System.String System.Xml.Xsl.Runtime.StringConcat::s3 String_t* ___s3_2; // System.String System.Xml.Xsl.Runtime.StringConcat::s4 String_t* ___s4_3; // System.String System.Xml.Xsl.Runtime.StringConcat::delimiter String_t* ___delimiter_4; // System.Collections.Generic.List`1 System.Xml.Xsl.Runtime.StringConcat::strList List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___strList_5; // System.Int32 System.Xml.Xsl.Runtime.StringConcat::idxStr int32_t ___idxStr_6; }; // Native definition for P/Invoke marshalling of System.Xml.Xsl.Runtime.StringConcat struct StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9_marshaled_pinvoke { char* ___s1_0; char* ___s2_1; char* ___s3_2; char* ___s4_3; char* ___delimiter_4; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___strList_5; int32_t ___idxStr_6; }; // Native definition for COM marshalling of System.Xml.Xsl.Runtime.StringConcat struct StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9_marshaled_com { Il2CppChar* ___s1_0; Il2CppChar* ___s2_1; Il2CppChar* ___s3_2; Il2CppChar* ___s4_3; Il2CppChar* ___delimiter_4; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___strList_5; int32_t ___idxStr_6; }; // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { }; struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields { // System.IO.TextReader System.IO.TextReader::Null TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null_1; }; // System.IO.TextWriter struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.Char[] System.IO.TextWriter::CoreNewLine CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine_3; // System.String System.IO.TextWriter::CoreNewLineStr String_t* ___CoreNewLineStr_4; // System.IFormatProvider System.IO.TextWriter::_internalFormatProvider RuntimeObject* ____internalFormatProvider_5; }; struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields { // System.IO.TextWriter System.IO.TextWriter::Null TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null_1; // System.Char[] System.IO.TextWriter::s_coreNewLine CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine_2; }; // System.UInt32 struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B { // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; }; // System.Xml.UTF16Decoder struct UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227 : public Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC { // System.Boolean System.Xml.UTF16Decoder::bigEndian bool ___bigEndian_2; // System.Int32 System.Xml.UTF16Decoder::lastByte int32_t ___lastByte_3; }; // System.Text.UTF8Encoding struct UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE : public Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 { // System.Boolean System.Text.UTF8Encoding::_emitUTF8Identifier bool ____emitUTF8Identifier_18; // System.Boolean System.Text.UTF8Encoding::_isThrowException bool ____isThrowException_19; }; struct UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_StaticFields { // System.Text.UTF8Encoding/UTF8EncodingSealed System.Text.UTF8Encoding::s_default UTF8EncodingSealed_tF97A34F40CABE9CE1C168967D60396F51C43DD36* ___s_default_16; // System.Byte[] System.Text.UTF8Encoding::s_preamble ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_preamble_17; }; // System.Xml.Ucs4Encoding struct Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B : public Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 { // System.Xml.Ucs4Decoder System.Xml.Ucs4Encoding::ucs4Decoder Ucs4Decoder_t7D0437C862A46FB0EB97DEBA7C4660A781AD7F82* ___ucs4Decoder_16; }; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915 { union { struct { }; uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1]; }; }; // System.Xml.XmlAsyncCheckReader struct XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlReader System.Xml.XmlAsyncCheckReader::coreReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3; // System.Threading.Tasks.Task System.Xml.XmlAsyncCheckReader::lastTask Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___lastTask_4; }; // System.Xml.XmlAsyncCheckWriter struct XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F { // System.Xml.XmlWriter System.Xml.XmlAsyncCheckWriter::coreWriter XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___coreWriter_1; // System.Threading.Tasks.Task System.Xml.XmlAsyncCheckWriter::lastTask Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___lastTask_2; }; // System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 { // System.Byte[] System.Xml.XmlCharType::charProperties ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___charProperties_2; }; struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_StaticFields { // System.Object System.Xml.XmlCharType::s_Lock RuntimeObject* ___s_Lock_0; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlCharType::s_CharProperties ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_CharProperties_1; }; // Native definition for P/Invoke marshalling of System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // Native definition for COM marshalling of System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_marshaled_com { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // System.Xml.XmlRawWriter struct XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F { // System.Xml.XmlRawWriterBase64Encoder System.Xml.XmlRawWriter::base64Encoder XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* ___base64Encoder_1; // System.Xml.IXmlNamespaceResolver System.Xml.XmlRawWriter::resolver RuntimeObject* ___resolver_2; }; // System.Xml.XmlRawWriterBase64Encoder struct XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D : public Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2 { // System.Xml.XmlRawWriter System.Xml.XmlRawWriterBase64Encoder::rawWriter XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter_3; }; // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 : public XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D { // System.String System.Xml.Schema.XmlSchemaAnnotated::id String_t* ___id_6; // System.Xml.Schema.XmlSchemaAnnotation System.Xml.Schema.XmlSchemaAnnotated::annotation XmlSchemaAnnotation_t35947D4DA687AA3C531135CEC5EBE7AB1C3EF821* ___annotation_7; // System.Xml.XmlAttribute[] System.Xml.Schema.XmlSchemaAnnotated::moreAttributes XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40* ___moreAttributes_8; }; // System.Xml.XmlTextReader struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::impl XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___impl_3; }; // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E : public XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF { // System.Net.ICredentials System.Xml.XmlUrlResolver::_credentials RuntimeObject* ____credentials_1; // System.Net.IWebProxy System.Xml.XmlUrlResolver::_proxy RuntimeObject* ____proxy_2; // System.Net.Cache.RequestCachePolicy System.Xml.XmlUrlResolver::_cachePolicy RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ____cachePolicy_3; }; struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_StaticFields { // System.Object System.Xml.XmlUrlResolver::s_DownloadManager RuntimeObject* ___s_DownloadManager_0; }; // System.Xml.XmlValidatingReader struct XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlValidatingReaderImpl System.Xml.XmlValidatingReader::impl XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___impl_3; }; // System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy struct XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9 { // System.Xml.XmlReader System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::reader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_0; }; // Native definition for P/Invoke marshalling of System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy struct XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_pinvoke { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_0; }; // Native definition for COM marshalling of System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy struct XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_com { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_0; }; // System.Xml.XmlSqlBinaryReader/QName struct QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156 { // System.String System.Xml.XmlSqlBinaryReader/QName::prefix String_t* ___prefix_0; // System.String System.Xml.XmlSqlBinaryReader/QName::localname String_t* ___localname_1; // System.String System.Xml.XmlSqlBinaryReader/QName::namespaceUri String_t* ___namespaceUri_2; }; // Native definition for P/Invoke marshalling of System.Xml.XmlSqlBinaryReader/QName struct QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156_marshaled_pinvoke { char* ___prefix_0; char* ___localname_1; char* ___namespaceUri_2; }; // Native definition for COM marshalling of System.Xml.XmlSqlBinaryReader/QName struct QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156_marshaled_com { Il2CppChar* ___prefix_0; Il2CppChar* ___localname_1; Il2CppChar* ___namespaceUri_2; }; // System.Xml.XmlSqlBinaryReader/SymbolTables struct SymbolTables_tBFFFF1A52BAAB8C6D52F8B28AB963DC625ECB177 { // System.String[] System.Xml.XmlSqlBinaryReader/SymbolTables::symtable StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___symtable_0; // System.Int32 System.Xml.XmlSqlBinaryReader/SymbolTables::symCount int32_t ___symCount_1; // System.Xml.XmlSqlBinaryReader/QName[] System.Xml.XmlSqlBinaryReader/SymbolTables::qnametable QNameU5BU5D_tE6EE30AC34834B1416E7CB4152DB3C0904CBB684* ___qnametable_2; // System.Int32 System.Xml.XmlSqlBinaryReader/SymbolTables::qnameCount int32_t ___qnameCount_3; }; // Native definition for P/Invoke marshalling of System.Xml.XmlSqlBinaryReader/SymbolTables struct SymbolTables_tBFFFF1A52BAAB8C6D52F8B28AB963DC625ECB177_marshaled_pinvoke { char** ___symtable_0; int32_t ___symCount_1; QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156_marshaled_pinvoke* ___qnametable_2; int32_t ___qnameCount_3; }; // Native definition for COM marshalling of System.Xml.XmlSqlBinaryReader/SymbolTables struct SymbolTables_tBFFFF1A52BAAB8C6D52F8B28AB963DC625ECB177_marshaled_com { Il2CppChar** ___symtable_0; int32_t ___symCount_1; QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156_marshaled_com* ___qnametable_2; int32_t ___qnameCount_3; }; // System.Xml.XmlTextReaderImpl/NoNamespaceManager struct NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4 : public XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F { }; // System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 { // System.Char[] System.Xml.XmlTextReaderImpl/ParsingState::chars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars_0; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charPos int32_t ___charPos_1; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charsUsed int32_t ___charsUsed_2; // System.Text.Encoding System.Xml.XmlTextReaderImpl/ParsingState::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::appendMode bool ___appendMode_4; // System.IO.Stream System.Xml.XmlTextReaderImpl/ParsingState::stream Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; // System.Text.Decoder System.Xml.XmlTextReaderImpl/ParsingState::decoder Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___decoder_6; // System.Byte[] System.Xml.XmlTextReaderImpl/ParsingState::bytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes_7; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytePos int32_t ___bytePos_8; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytesUsed int32_t ___bytesUsed_9; // System.IO.TextReader System.Xml.XmlTextReaderImpl/ParsingState::textReader TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___textReader_10; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineNo int32_t ___lineNo_11; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineStartPos int32_t ___lineStartPos_12; // System.String System.Xml.XmlTextReaderImpl/ParsingState::baseUriStr String_t* ___baseUriStr_13; // System.Uri System.Xml.XmlTextReaderImpl/ParsingState::baseUri Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri_14; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isEof bool ___isEof_15; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isStreamEof bool ___isStreamEof_16; // System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl/ParsingState::entity RuntimeObject* ___entity_17; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::entityId int32_t ___entityId_18; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::eolNormalized bool ___eolNormalized_19; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::entityResolvedManually bool ___entityResolvedManually_20; }; // Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_pinvoke { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; int32_t ___appendMode_4; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___decoder_6; Il2CppSafeArray/*NONE*/* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; char* ___baseUriStr_13; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; // Native definition for COM marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_com { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; int32_t ___appendMode_4; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___decoder_6; Il2CppSafeArray/*NONE*/* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; Il2CppChar* ___baseUriStr_13; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; // System.Xml.AttributeProperties struct AttributeProperties_tC54D85781EE1CC9EBDFCCFAAE8CD995F5C3D7C46 { // System.UInt32 System.Xml.AttributeProperties::value__ uint32_t ___value___2; }; // System.Xml.BinXmlToken struct BinXmlToken_t0E37DCD9A997520567E13D742ABCEF49659453E8 { // System.Int32 System.Xml.BinXmlToken::value__ int32_t ___value___2; }; // System.Reflection.BindingFlags struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C { // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; }; // System.Xml.ConformanceLevel struct ConformanceLevel_t90FE5650C4EA88985ED92E858B142605B5645E0A { // System.Int32 System.Xml.ConformanceLevel::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.Xml.DtdProcessing struct DtdProcessing_tC6A3C44E1448F35C5AD9755CCABF13537327A871 { // System.Int32 System.Xml.DtdProcessing::value__ int32_t ___value___2; }; // System.Xml.ElementProperties struct ElementProperties_t4E8E922B73BC72070A1C71FAC564B4318CC286B2 { // System.UInt32 System.Xml.ElementProperties::value__ uint32_t ___value___2; }; // System.Xml.EntityHandling struct EntityHandling_t13EA84821678B8FC70DDC4143059C59853ED180E { // System.Int32 System.Xml.EntityHandling::value__ int32_t ___value___2; }; // 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.Xml.Formatting struct Formatting_t5EF3CA95BE1609D2F16907321F59B3BF36D59598 { // System.Int32 System.Xml.Formatting::value__ int32_t ___value___2; }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { }; // System.Xml.NamespaceHandling struct NamespaceHandling_t0DD5BBAE6E5AD2765848D1809C3DEF5311629CBB { // System.Int32 System.Xml.NamespaceHandling::value__ int32_t ___value___2; }; // System.Xml.NewLineHandling struct NewLineHandling_t8DFACC664E91AFFE9731BAC651A1243ABE8AC704 { // System.Int32 System.Xml.NewLineHandling::value__ int32_t ___value___2; }; // System.Globalization.NumberStyles struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C { // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; }; // System.Xml.QueryOutputWriter struct QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2 : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B { // System.Xml.XmlRawWriter System.Xml.QueryOutputWriter::wrapped XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___wrapped_3; // System.Boolean System.Xml.QueryOutputWriter::inCDataSection bool ___inCDataSection_4; // System.Collections.Generic.Dictionary`2 System.Xml.QueryOutputWriter::lookupCDataElems Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* ___lookupCDataElems_5; // System.Xml.BitStack System.Xml.QueryOutputWriter::bitsCData BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* ___bitsCData_6; // System.Xml.XmlQualifiedName System.Xml.QueryOutputWriter::qnameCData XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qnameCData_7; // System.Boolean System.Xml.QueryOutputWriter::outputDocType bool ___outputDocType_8; // System.Boolean System.Xml.QueryOutputWriter::checkWellFormedDoc bool ___checkWellFormedDoc_9; // System.Boolean System.Xml.QueryOutputWriter::hasDocElem bool ___hasDocElem_10; // System.Boolean System.Xml.QueryOutputWriter::inAttr bool ___inAttr_11; // System.String System.Xml.QueryOutputWriter::systemId String_t* ___systemId_12; // System.String System.Xml.QueryOutputWriter::publicId String_t* ___publicId_13; // System.Int32 System.Xml.QueryOutputWriter::depth int32_t ___depth_14; }; // 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.StringComparison struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D { // System.Int32 System.StringComparison::value__ int32_t ___value___2; }; // System.IO.StringWriter struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 { // System.Text.StringBuilder System.IO.StringWriter::_sb StringBuilder_t* ____sb_7; // System.Boolean System.IO.StringWriter::_isOpen bool ____isOpen_8; }; struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_StaticFields { // System.Text.UnicodeEncoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StringWriter::m_encoding UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0* ___m_encoding_6; }; // System.Threading.Tasks.Task struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 : public RuntimeObject { // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId int32_t ___m_taskId_1; // System.Delegate System.Threading.Tasks.Task::m_action Delegate_t* ___m_action_2; // System.Object System.Threading.Tasks.Task::m_stateObject RuntimeObject* ___m_stateObject_3; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_taskScheduler_4; // System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_parent_5; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags int32_t ___m_stateFlags_6; // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject RuntimeObject* ___m_continuationObject_7; // System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540* ___m_contingentProperties_10; }; struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields { // System.Int32 System.Threading.Tasks.Task::s_taskIdCounter int32_t ___s_taskIdCounter_0; // System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel RuntimeObject* ___s_taskCompletionSentinel_8; // System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled bool ___s_asyncDebuggingEnabled_9; // System.Action`1 System.Threading.Tasks.Task::s_taskCancelCallback Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_taskCancelCallback_11; // System.Func`1 System.Threading.Tasks.Task::s_createContingentProperties Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1* ___s_createContingentProperties_14; // System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::k__BackingField TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0* ___U3CFactoryU3Ek__BackingField_15; // System.Threading.Tasks.Task System.Threading.Tasks.Task::k__BackingField Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___U3CCompletedTaskU3Ek__BackingField_16; // System.Predicate`1 System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED* ___s_IsExceptionObservedByParentPredicate_17; // System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007* ___s_ecCallback_18; // System.Predicate`1 System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___s_IsTaskContinuationNullPredicate_19; // System.Collections.Generic.Dictionary`2 System.Threading.Tasks.Task::s_currentActiveTasks Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55* ___s_currentActiveTasks_20; // System.Object System.Threading.Tasks.Task::s_activeTasksLock RuntimeObject* ___s_activeTasksLock_21; }; struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_ThreadStaticFields { // System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___t_currentTask_12; // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352* ___t_stackGuard_13; }; // System.Xml.TriState struct TriState_tA38A5344A2F2845F64B00B527E97CC16CC746D22 { // System.Int32 System.Xml.TriState::value__ int32_t ___value___2; }; // System.UriIdnScope struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F { // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; }; // System.Xml.ValidationType struct ValidationType_t5866D5C0E60B27B092AB080025B9538AC97B4815 { // System.Int32 System.Xml.ValidationType::value__ int32_t ___value___2; }; // System.Xml.WhitespaceHandling struct WhitespaceHandling_t3ABF1FE238493409F6E2E4A408E72849A910B5D6 { // System.Int32 System.Xml.WhitespaceHandling::value__ int32_t ___value___2; }; // System.Xml.WriteState struct WriteState_t7C7DD3FA495CE7586781A5919ECDD49CD0270729 { // System.Int32 System.Xml.WriteState::value__ int32_t ___value___2; }; // System.Xml.XmlAsyncCheckReaderWithLineInfo struct XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE : public XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4 { // System.Xml.IXmlLineInfo System.Xml.XmlAsyncCheckReaderWithLineInfo::readerAsIXmlLineInfo RuntimeObject* ___readerAsIXmlLineInfo_5; }; // System.Xml.XmlAsyncCheckReaderWithNS struct XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5 : public XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4 { // System.Xml.IXmlNamespaceResolver System.Xml.XmlAsyncCheckReaderWithNS::readerAsIXmlNamespaceResolver RuntimeObject* ___readerAsIXmlNamespaceResolver_5; }; // System.Xml.XmlAutoDetectWriter struct XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B { // System.Xml.XmlRawWriter System.Xml.XmlAutoDetectWriter::wrapped XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___wrapped_3; // System.Xml.OnRemoveWriter System.Xml.XmlAutoDetectWriter::onRemove OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* ___onRemove_4; // System.Xml.XmlWriterSettings System.Xml.XmlAutoDetectWriter::writerSettings XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings_5; // System.Xml.XmlEventCache System.Xml.XmlAutoDetectWriter::eventCache XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* ___eventCache_6; // System.IO.TextWriter System.Xml.XmlAutoDetectWriter::textWriter TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_7; // System.IO.Stream System.Xml.XmlAutoDetectWriter::strm Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___strm_8; }; // System.Xml.XmlEventCache struct XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B { // System.Collections.Generic.List`1 System.Xml.XmlEventCache::pages List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* ___pages_3; // System.Xml.XmlEventCache/XmlEvent[] System.Xml.XmlEventCache::pageCurr XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* ___pageCurr_4; // System.Int32 System.Xml.XmlEventCache::pageSize int32_t ___pageSize_5; // System.Boolean System.Xml.XmlEventCache::hasRootNode bool ___hasRootNode_6; // System.Xml.Xsl.Runtime.StringConcat System.Xml.XmlEventCache::singleText StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9 ___singleText_7; // System.String System.Xml.XmlEventCache::baseUri String_t* ___baseUri_8; }; // System.Xml.XmlNamespaceScope struct XmlNamespaceScope_t9EB2A1CEC55CBA30A4612AD7EAAAF4106B96AD01 { // System.Int32 System.Xml.XmlNamespaceScope::value__ int32_t ___value___2; }; // System.Xml.XmlNodeType struct XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95 { // System.Int32 System.Xml.XmlNodeType::value__ int32_t ___value___2; }; // System.Xml.XmlOutputMethod struct XmlOutputMethod_tC9C5ED49E0965D5963F0BBDC6E399FF6EC42369B { // System.Int32 System.Xml.XmlOutputMethod::value__ int32_t ___value___2; }; // System.Xml.Schema.XmlSchemaContentType struct XmlSchemaContentType_t30F65D76DF78B49262A67031AF1B166EDF032600 { // System.Int32 System.Xml.Schema.XmlSchemaContentType::value__ int32_t ___value___2; }; // System.Xml.Schema.XmlSchemaDerivationMethod struct XmlSchemaDerivationMethod_t079141185E69D21187DC6E38FF803DFBDC9A173D { // System.Int32 System.Xml.Schema.XmlSchemaDerivationMethod::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.Schema.XmlSchemaUse struct XmlSchemaUse_t394B7F1B32DDD77B0ECC3E50AAA65501D0DE92D1 { // System.Int32 System.Xml.Schema.XmlSchemaUse::value__ int32_t ___value___2; }; // System.Xml.Schema.XmlSchemaValidationFlags struct XmlSchemaValidationFlags_t7ACA21306EF62E9BCE1196DA6D9258452BEE8EBF { // System.Int32 System.Xml.Schema.XmlSchemaValidationFlags::value__ int32_t ___value___2; }; // System.Xml.Schema.XmlSchemaValidity struct XmlSchemaValidity_t6A23BF5BB6AF73795630FCCCF46F0F600BA8B4F6 { // System.Int32 System.Xml.Schema.XmlSchemaValidity::value__ int32_t ___value___2; }; // System.Xml.Schema.XmlSeverityType struct XmlSeverityType_t561D2CF1B3134CC79EEAB254D53D878EC45F6071 { // System.Int32 System.Xml.Schema.XmlSeverityType::value__ int32_t ___value___2; }; // System.Xml.XmlSpace struct XmlSpace_t6A78E68D9618EE5EFEA37E875ED46B88B03DB357 { // System.Int32 System.Xml.XmlSpace::value__ int32_t ___value___2; }; // System.Xml.XmlStandalone struct XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441 { // System.Int32 System.Xml.XmlStandalone::value__ int32_t ___value___2; }; // System.Xml.XmlTextEncoder struct XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40 : public RuntimeObject { // System.IO.TextWriter System.Xml.XmlTextEncoder::textWriter TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_0; // System.Boolean System.Xml.XmlTextEncoder::inAttribute bool ___inAttribute_1; // System.Char System.Xml.XmlTextEncoder::quoteChar Il2CppChar ___quoteChar_2; // System.Text.StringBuilder System.Xml.XmlTextEncoder::attrValue StringBuilder_t* ___attrValue_3; // System.Boolean System.Xml.XmlTextEncoder::cacheAttrValue bool ___cacheAttrValue_4; // System.Xml.XmlCharType System.Xml.XmlTextEncoder::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_5; }; // System.Xml.ReadContentAsBinaryHelper/State struct State_tFAC725C130DC954C0F91FADA137D7C3710F1A7E0 { // System.Int32 System.Xml.ReadContentAsBinaryHelper/State::value__ int32_t ___value___2; }; // System.Xml.Schema.SchemaAttDef/Reserve struct Reserve_tDAED14B521B7F6339D31BDE0156E370E47AB49BF { // System.Int32 System.Xml.Schema.SchemaAttDef/Reserve::value__ int32_t ___value___2; }; // System.Xml.Schema.SchemaDeclBase/Use struct Use_tC7E0CA6B6AE6F37FB36AA9911EA2B1829AC18EAC { // System.Int32 System.Xml.Schema.SchemaDeclBase/Use::value__ int32_t ___value___2; }; // System.Uri/Flags struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897 { // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; }; // System.Xml.XmlEventCache/XmlEventType struct XmlEventType_t0FA77E8C9C8BAEC1F22C6C522164C1D873652019 { // System.Int32 System.Xml.XmlEventCache/XmlEventType::value__ int32_t ___value___2; }; // System.Xml.Schema.XmlSchemaParticle/Occurs struct Occurs_t74A6F69297E726614F92E08207C97DD6F27E86DF { // System.Int32 System.Xml.Schema.XmlSchemaParticle/Occurs::value__ int32_t ___value___2; }; // System.Xml.XmlSqlBinaryReader/ScanState struct ScanState_t32B320DF25CF9A16F044154223C05D6D52D47A58 { // System.Int32 System.Xml.XmlSqlBinaryReader/ScanState::value__ int32_t ___value___2; }; // System.Xml.XmlTextReaderImpl/EntityExpandType struct EntityExpandType_t6C726A87C20AE0F72FD09397D8CFEF257B304C09 { // System.Int32 System.Xml.XmlTextReaderImpl/EntityExpandType::value__ int32_t ___value___2; }; // System.Xml.XmlTextReaderImpl/EntityType struct EntityType_t714AD8E504B2F409658881C96DCD0AA9459BF30E { // System.Int32 System.Xml.XmlTextReaderImpl/EntityType::value__ int32_t ___value___2; }; // System.Xml.XmlTextReaderImpl/IncrementalReadState struct IncrementalReadState_tE59C8525766041037D84E0FCFD0DD90E26F45612 { // System.Int32 System.Xml.XmlTextReaderImpl/IncrementalReadState::value__ int32_t ___value___2; }; // System.Xml.XmlTextReaderImpl/InitInputType struct InitInputType_t181ACB24EB70869E16C9171A293238B38C0AC557 { // System.Int32 System.Xml.XmlTextReaderImpl/InitInputType::value__ int32_t ___value___2; }; // System.Xml.XmlTextReaderImpl/ParsingFunction struct ParsingFunction_t212AA00387401B819A5C119AC2DFC96BB0265667 { // System.Int32 System.Xml.XmlTextReaderImpl/ParsingFunction::value__ int32_t ___value___2; }; // System.Xml.XmlTextReaderImpl/ParsingMode struct ParsingMode_t4ACC4D68C98E6EB46779404DCA70331F5FE13776 { // System.Int32 System.Xml.XmlTextReaderImpl/ParsingMode::value__ int32_t ___value___2; }; // System.Xml.XmlTextWriter/SpecialAttr struct SpecialAttr_t020B7EFC3BE44C46A0E81D094A9AE5646065887C { // System.Int32 System.Xml.XmlTextWriter/SpecialAttr::value__ int32_t ___value___2; }; // System.Xml.XmlTextWriter/State struct State_t2EBD3BF5AFDFDCF3FB477A1B4DE46FA56C5D68CE { // System.Int32 System.Xml.XmlTextWriter/State::value__ int32_t ___value___2; }; // System.Xml.XmlTextWriter/Token struct Token_t42EE6846A8E76E8B25571430B0C13E3EEA36F639 { // System.Int32 System.Xml.XmlTextWriter/Token::value__ int32_t ___value___2; }; // System.Xml.XmlValidatingReaderImpl/ParsingFunction struct ParsingFunction_tC718D20F7986A479D11D8EE72FE2DB76A2D02DAD { // System.Int32 System.Xml.XmlValidatingReaderImpl/ParsingFunction::value__ int32_t ___value___2; }; // System.Xml.XmlWellFormedWriter/SpecialAttribute struct SpecialAttribute_t07EE6A3DA988DFBFF62BE198603D03A0B95A3AEE { // System.Int32 System.Xml.XmlWellFormedWriter/SpecialAttribute::value__ int32_t ___value___2; }; // System.Xml.XmlWellFormedWriter/State struct State_tE745A3C97E427F6BC65817B47D18621AEF53300E { // System.Int32 System.Xml.XmlWellFormedWriter/State::value__ int32_t ___value___2; }; // System.Xml.XsdValidatingReader/ValidatingReaderState struct ValidatingReaderState_t552412ED556AC2E46861163AB6FC77CD2754EF19 { // System.Int32 System.Xml.XsdValidatingReader/ValidatingReaderState::value__ int32_t ___value___2; }; // System.Threading.Tasks.Task`1> struct Task_1_tB493F74D58DB1761E087206849D953E99D07600B : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // TResult System.Threading.Tasks.Task`1::m_result Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9* ___m_result_22; }; struct Task_1_tB493F74D58DB1761E087206849D953E99D07600B_StaticFields { // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_defaultFactory TaskFactory_1_t42C9608CCE6E07FBC5D71980718AC1DD4FF97566* ___s_defaultFactory_23; }; // System.Threading.Tasks.Task`1 struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // TResult System.Threading.Tasks.Task`1::m_result RuntimeObject* ___m_result_22; }; struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2_StaticFields { // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_defaultFactory TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B* ___s_defaultFactory_23; }; // 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.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject { // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; }; struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields { // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0; }; // System.Xml.ReadContentAsBinaryHelper struct ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897 : public RuntimeObject { // System.Xml.XmlReader System.Xml.ReadContentAsBinaryHelper::reader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_0; // System.Xml.ReadContentAsBinaryHelper/State System.Xml.ReadContentAsBinaryHelper::state int32_t ___state_1; // System.Int32 System.Xml.ReadContentAsBinaryHelper::valueOffset int32_t ___valueOffset_2; // System.Boolean System.Xml.ReadContentAsBinaryHelper::isEnd bool ___isEnd_3; }; // System.Xml.Schema.SchemaDeclBase struct SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B : public RuntimeObject { // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::name XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___name_0; // System.String System.Xml.Schema.SchemaDeclBase::prefix String_t* ___prefix_1; // System.Boolean System.Xml.Schema.SchemaDeclBase::isDeclaredInExternal bool ___isDeclaredInExternal_2; // System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::presence int32_t ___presence_3; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.SchemaDeclBase::schemaType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___schemaType_4; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::datatype XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___datatype_5; // System.String System.Xml.Schema.SchemaDeclBase::defaultValueRaw String_t* ___defaultValueRaw_6; // System.Object System.Xml.Schema.SchemaDeclBase::defaultValueTyped RuntimeObject* ___defaultValueTyped_7; // System.Int64 System.Xml.Schema.SchemaDeclBase::maxLength int64_t ___maxLength_8; // System.Int64 System.Xml.Schema.SchemaDeclBase::minLength int64_t ___minLength_9; // System.Collections.Generic.List`1 System.Xml.Schema.SchemaDeclBase::values List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___values_10; }; // System.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t { }; // System.Type struct Type_t : public MemberInfo_t { // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8; }; struct Type_t_StaticFields { // System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_1; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2; // System.Object System.Type::Missing RuntimeObject* ___Missing_3; // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6; }; // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject { // System.String System.Uri::m_String String_t* ___m_String_13; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_14; // System.UriParser System.Uri::m_Syntax UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_15; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_16; // System.Uri/Flags System.Uri::m_Flags uint64_t ___m_Flags_17; // System.Uri/UriInfo System.Uri::m_Info UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_19; }; struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields { // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_20; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_21; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_22; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_23; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_24; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_25; // System.Object System.Uri::s_initLock RuntimeObject* ___s_initLock_26; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27; // System.Char[] System.Uri::_WSchars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28; }; // System.Xml.ValidatingReaderNodeData struct ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C : public RuntimeObject { // System.String System.Xml.ValidatingReaderNodeData::localName String_t* ___localName_0; // System.String System.Xml.ValidatingReaderNodeData::namespaceUri String_t* ___namespaceUri_1; // System.String System.Xml.ValidatingReaderNodeData::prefix String_t* ___prefix_2; // System.String System.Xml.ValidatingReaderNodeData::nameWPrefix String_t* ___nameWPrefix_3; // System.String System.Xml.ValidatingReaderNodeData::rawValue String_t* ___rawValue_4; // System.String System.Xml.ValidatingReaderNodeData::originalStringValue String_t* ___originalStringValue_5; // System.Int32 System.Xml.ValidatingReaderNodeData::depth int32_t ___depth_6; // System.Xml.AttributePSVIInfo System.Xml.ValidatingReaderNodeData::attributePSVIInfo AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ___attributePSVIInfo_7; // System.Xml.XmlNodeType System.Xml.ValidatingReaderNodeData::nodeType int32_t ___nodeType_8; // System.Int32 System.Xml.ValidatingReaderNodeData::lineNo int32_t ___lineNo_9; // System.Int32 System.Xml.ValidatingReaderNodeData::linePos int32_t ___linePos_10; }; // System.Xml.XmlAsyncCheckReaderWithLineInfoNS struct XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629 : public XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE { // System.Xml.IXmlNamespaceResolver System.Xml.XmlAsyncCheckReaderWithLineInfoNS::readerAsIXmlNamespaceResolver RuntimeObject* ___readerAsIXmlNamespaceResolver_6; }; // System.Xml.XmlEncodedRawTextWriter struct XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4 : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B { // System.Boolean System.Xml.XmlEncodedRawTextWriter::useAsync bool ___useAsync_3; // System.Byte[] System.Xml.XmlEncodedRawTextWriter::bufBytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bufBytes_4; // System.IO.Stream System.Xml.XmlEncodedRawTextWriter::stream Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; // System.Text.Encoding System.Xml.XmlEncodedRawTextWriter::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_6; // System.Xml.XmlCharType System.Xml.XmlEncodedRawTextWriter::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_7; // System.Int32 System.Xml.XmlEncodedRawTextWriter::bufPos int32_t ___bufPos_8; // System.Int32 System.Xml.XmlEncodedRawTextWriter::textPos int32_t ___textPos_9; // System.Int32 System.Xml.XmlEncodedRawTextWriter::contentPos int32_t ___contentPos_10; // System.Int32 System.Xml.XmlEncodedRawTextWriter::cdataPos int32_t ___cdataPos_11; // System.Int32 System.Xml.XmlEncodedRawTextWriter::attrEndPos int32_t ___attrEndPos_12; // System.Int32 System.Xml.XmlEncodedRawTextWriter::bufLen int32_t ___bufLen_13; // System.Boolean System.Xml.XmlEncodedRawTextWriter::writeToNull bool ___writeToNull_14; // System.Boolean System.Xml.XmlEncodedRawTextWriter::hadDoubleBracket bool ___hadDoubleBracket_15; // System.Boolean System.Xml.XmlEncodedRawTextWriter::inAttributeValue bool ___inAttributeValue_16; // System.Int32 System.Xml.XmlEncodedRawTextWriter::bufBytesUsed int32_t ___bufBytesUsed_17; // System.Char[] System.Xml.XmlEncodedRawTextWriter::bufChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___bufChars_18; // System.Text.Encoder System.Xml.XmlEncodedRawTextWriter::encoder Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* ___encoder_19; // System.IO.TextWriter System.Xml.XmlEncodedRawTextWriter::writer TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer_20; // System.Boolean System.Xml.XmlEncodedRawTextWriter::trackTextContent bool ___trackTextContent_21; // System.Boolean System.Xml.XmlEncodedRawTextWriter::inTextContent bool ___inTextContent_22; // System.Int32 System.Xml.XmlEncodedRawTextWriter::lastMarkPos int32_t ___lastMarkPos_23; // System.Int32[] System.Xml.XmlEncodedRawTextWriter::textContentMarks Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___textContentMarks_24; // System.Xml.CharEntityEncoderFallback System.Xml.XmlEncodedRawTextWriter::charEntityFallback CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* ___charEntityFallback_25; // System.Xml.NewLineHandling System.Xml.XmlEncodedRawTextWriter::newLineHandling int32_t ___newLineHandling_26; // System.Boolean System.Xml.XmlEncodedRawTextWriter::closeOutput bool ___closeOutput_27; // System.Boolean System.Xml.XmlEncodedRawTextWriter::omitXmlDeclaration bool ___omitXmlDeclaration_28; // System.String System.Xml.XmlEncodedRawTextWriter::newLineChars String_t* ___newLineChars_29; // System.Boolean System.Xml.XmlEncodedRawTextWriter::checkCharacters bool ___checkCharacters_30; // System.Xml.XmlStandalone System.Xml.XmlEncodedRawTextWriter::standalone int32_t ___standalone_31; // System.Xml.XmlOutputMethod System.Xml.XmlEncodedRawTextWriter::outputMethod int32_t ___outputMethod_32; // System.Boolean System.Xml.XmlEncodedRawTextWriter::autoXmlDeclaration bool ___autoXmlDeclaration_33; // System.Boolean System.Xml.XmlEncodedRawTextWriter::mergeCDataSections bool ___mergeCDataSections_34; }; // System.Xml.XmlParserContext struct XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.XmlParserContext::_nt XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ____nt_0; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::_nsMgr XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ____nsMgr_1; // System.String System.Xml.XmlParserContext::_docTypeName String_t* ____docTypeName_2; // System.String System.Xml.XmlParserContext::_pubId String_t* ____pubId_3; // System.String System.Xml.XmlParserContext::_sysId String_t* ____sysId_4; // System.String System.Xml.XmlParserContext::_internalSubset String_t* ____internalSubset_5; // System.String System.Xml.XmlParserContext::_xmlLang String_t* ____xmlLang_6; // System.Xml.XmlSpace System.Xml.XmlParserContext::_xmlSpace int32_t ____xmlSpace_7; // System.String System.Xml.XmlParserContext::_baseURI String_t* ____baseURI_8; // System.Text.Encoding System.Xml.XmlParserContext::_encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding_9; }; // System.Xml.XmlReaderSettings struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA : public RuntimeObject { // System.Boolean System.Xml.XmlReaderSettings::useAsync bool ___useAsync_0; // System.Xml.XmlNameTable System.Xml.XmlReaderSettings::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_1; // System.Xml.XmlResolver System.Xml.XmlReaderSettings::xmlResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_2; // System.Int32 System.Xml.XmlReaderSettings::lineNumberOffset int32_t ___lineNumberOffset_3; // System.Int32 System.Xml.XmlReaderSettings::linePositionOffset int32_t ___linePositionOffset_4; // System.Xml.ConformanceLevel System.Xml.XmlReaderSettings::conformanceLevel int32_t ___conformanceLevel_5; // System.Boolean System.Xml.XmlReaderSettings::checkCharacters bool ___checkCharacters_6; // System.Int64 System.Xml.XmlReaderSettings::maxCharactersInDocument int64_t ___maxCharactersInDocument_7; // System.Int64 System.Xml.XmlReaderSettings::maxCharactersFromEntities int64_t ___maxCharactersFromEntities_8; // System.Boolean System.Xml.XmlReaderSettings::ignoreWhitespace bool ___ignoreWhitespace_9; // System.Boolean System.Xml.XmlReaderSettings::ignorePIs bool ___ignorePIs_10; // System.Boolean System.Xml.XmlReaderSettings::ignoreComments bool ___ignoreComments_11; // System.Xml.DtdProcessing System.Xml.XmlReaderSettings::dtdProcessing int32_t ___dtdProcessing_12; // System.Xml.ValidationType System.Xml.XmlReaderSettings::validationType int32_t ___validationType_13; // System.Xml.Schema.XmlSchemaValidationFlags System.Xml.XmlReaderSettings::validationFlags int32_t ___validationFlags_14; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlReaderSettings::schemas XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas_15; // System.Xml.Schema.ValidationEventHandler System.Xml.XmlReaderSettings::valEventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___valEventHandler_16; // System.Boolean System.Xml.XmlReaderSettings::closeInput bool ___closeInput_17; // System.Boolean System.Xml.XmlReaderSettings::isReadOnly bool ___isReadOnly_18; // System.Boolean System.Xml.XmlReaderSettings::k__BackingField bool ___U3CIsXmlResolverSetU3Ek__BackingField_19; }; struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields { // System.Nullable`1 System.Xml.XmlReaderSettings::s_enableLegacyXmlSettings Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___s_enableLegacyXmlSettings_20; }; // System.Xml.Schema.XmlSchemaAttribute struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { // System.String System.Xml.Schema.XmlSchemaAttribute::defaultValue String_t* ___defaultValue_9; // System.String System.Xml.Schema.XmlSchemaAttribute::fixedValue String_t* ___fixedValue_10; // System.String System.Xml.Schema.XmlSchemaAttribute::name String_t* ___name_11; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaAttribute::form int32_t ___form_12; // System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaAttribute::use int32_t ___use_13; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::refName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___refName_14; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::typeName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___typeName_15; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::qualifiedName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qualifiedName_16; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaAttribute::type XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___type_17; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaAttribute::attributeType XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___attributeType_18; // System.Xml.Schema.SchemaAttDef System.Xml.Schema.XmlSchemaAttribute::attDef SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attDef_19; }; // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { // System.Decimal System.Xml.Schema.XmlSchemaParticle::minOccurs Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___minOccurs_9; // System.Decimal System.Xml.Schema.XmlSchemaParticle::maxOccurs Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___maxOccurs_10; // System.Xml.Schema.XmlSchemaParticle/Occurs System.Xml.Schema.XmlSchemaParticle::flags int32_t ___flags_11; }; struct XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE_StaticFields { // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::Empty XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE* ___Empty_12; }; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { // System.String System.Xml.Schema.XmlSchemaType::name String_t* ___name_9; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::final int32_t ___final_10; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::derivedBy int32_t ___derivedBy_11; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::baseSchemaType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___baseSchemaType_12; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::datatype XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___datatype_13; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::finalResolved int32_t ___finalResolved_14; // System.Xml.Schema.SchemaElementDecl modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::elementDecl SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___elementDecl_15; // System.Xml.XmlQualifiedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::qname XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_16; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::redefined XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___redefined_17; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaType::contentType int32_t ___contentType_18; }; // System.Xml.XmlSqlBinaryReader struct XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.IO.Stream System.Xml.XmlSqlBinaryReader::inStrm Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___inStrm_8; // System.Byte[] System.Xml.XmlSqlBinaryReader::data ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data_9; // System.Int32 System.Xml.XmlSqlBinaryReader::pos int32_t ___pos_10; // System.Int32 System.Xml.XmlSqlBinaryReader::mark int32_t ___mark_11; // System.Int32 System.Xml.XmlSqlBinaryReader::end int32_t ___end_12; // System.Int64 System.Xml.XmlSqlBinaryReader::offset int64_t ___offset_13; // System.Boolean System.Xml.XmlSqlBinaryReader::eof bool ___eof_14; // System.Boolean System.Xml.XmlSqlBinaryReader::sniffed bool ___sniffed_15; // System.Boolean System.Xml.XmlSqlBinaryReader::isEmpty bool ___isEmpty_16; // System.Int32 System.Xml.XmlSqlBinaryReader::docState int32_t ___docState_17; // System.Xml.XmlSqlBinaryReader/SymbolTables System.Xml.XmlSqlBinaryReader::symbolTables SymbolTables_tBFFFF1A52BAAB8C6D52F8B28AB963DC625ECB177 ___symbolTables_18; // System.Xml.XmlNameTable System.Xml.XmlSqlBinaryReader::xnt XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___xnt_19; // System.Boolean System.Xml.XmlSqlBinaryReader::xntFromSettings bool ___xntFromSettings_20; // System.String System.Xml.XmlSqlBinaryReader::xml String_t* ___xml_21; // System.String System.Xml.XmlSqlBinaryReader::xmlns String_t* ___xmlns_22; // System.String System.Xml.XmlSqlBinaryReader::nsxmlns String_t* ___nsxmlns_23; // System.String System.Xml.XmlSqlBinaryReader::baseUri String_t* ___baseUri_24; // System.Xml.XmlSqlBinaryReader/ScanState System.Xml.XmlSqlBinaryReader::state int32_t ___state_25; // System.Xml.XmlNodeType System.Xml.XmlSqlBinaryReader::nodetype int32_t ___nodetype_26; // System.Xml.BinXmlToken System.Xml.XmlSqlBinaryReader::token int32_t ___token_27; // System.Int32 System.Xml.XmlSqlBinaryReader::attrIndex int32_t ___attrIndex_28; // System.Xml.XmlSqlBinaryReader/QName System.Xml.XmlSqlBinaryReader::qnameOther QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156 ___qnameOther_29; // System.Xml.XmlSqlBinaryReader/QName System.Xml.XmlSqlBinaryReader::qnameElement QName_tA3E1CB09850DEF9376C068A29697FEDB0F82C156 ___qnameElement_30; // System.Xml.XmlNodeType System.Xml.XmlSqlBinaryReader::parentNodeType int32_t ___parentNodeType_31; // System.Xml.XmlSqlBinaryReader/ElemInfo[] System.Xml.XmlSqlBinaryReader::elementStack ElemInfoU5BU5D_tC4C081494489517ABD5C5E1EE92F1336EAFC4BF3* ___elementStack_32; // System.Int32 System.Xml.XmlSqlBinaryReader::elemDepth int32_t ___elemDepth_33; // System.Xml.XmlSqlBinaryReader/AttrInfo[] System.Xml.XmlSqlBinaryReader::attributes AttrInfoU5BU5D_tE03F07A01FD491481AD6E60E9E172CC63CF0CF5B* ___attributes_34; // System.Int32[] System.Xml.XmlSqlBinaryReader::attrHashTbl Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___attrHashTbl_35; // System.Int32 System.Xml.XmlSqlBinaryReader::attrCount int32_t ___attrCount_36; // System.Int32 System.Xml.XmlSqlBinaryReader::posAfterAttrs int32_t ___posAfterAttrs_37; // System.Boolean System.Xml.XmlSqlBinaryReader::xmlspacePreserve bool ___xmlspacePreserve_38; // System.Int32 System.Xml.XmlSqlBinaryReader::tokLen int32_t ___tokLen_39; // System.Int32 System.Xml.XmlSqlBinaryReader::tokDataPos int32_t ___tokDataPos_40; // System.Boolean System.Xml.XmlSqlBinaryReader::hasTypedValue bool ___hasTypedValue_41; // System.Type System.Xml.XmlSqlBinaryReader::valueType Type_t* ___valueType_42; // System.String System.Xml.XmlSqlBinaryReader::stringValue String_t* ___stringValue_43; // System.Collections.Generic.Dictionary`2 System.Xml.XmlSqlBinaryReader::namespaces Dictionary_2_t37B53432DE16D10368358F7550CC7F349FA29308* ___namespaces_44; // System.Xml.XmlSqlBinaryReader/NestedBinXml System.Xml.XmlSqlBinaryReader::prevNameInfo NestedBinXml_tD04A5F6B7E2EC9CEA75A974F184707131FFF6EF8* ___prevNameInfo_45; // System.Xml.XmlReader System.Xml.XmlSqlBinaryReader::textXmlReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___textXmlReader_46; // System.Boolean System.Xml.XmlSqlBinaryReader::closeInput bool ___closeInput_47; // System.Boolean System.Xml.XmlSqlBinaryReader::checkCharacters bool ___checkCharacters_48; // System.Boolean System.Xml.XmlSqlBinaryReader::ignoreWhitespace bool ___ignoreWhitespace_49; // System.Boolean System.Xml.XmlSqlBinaryReader::ignorePIs bool ___ignorePIs_50; // System.Boolean System.Xml.XmlSqlBinaryReader::ignoreComments bool ___ignoreComments_51; // System.Xml.DtdProcessing System.Xml.XmlSqlBinaryReader::dtdProcessing int32_t ___dtdProcessing_52; // System.Xml.SecureStringHasher System.Xml.XmlSqlBinaryReader::hasher SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* ___hasher_53; // System.Xml.XmlCharType System.Xml.XmlSqlBinaryReader::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_54; // System.Text.Encoding System.Xml.XmlSqlBinaryReader::unicode Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicode_55; // System.Byte System.Xml.XmlSqlBinaryReader::version uint8_t ___version_56; }; struct XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8_StaticFields { // System.Type System.Xml.XmlSqlBinaryReader::TypeOfObject Type_t* ___TypeOfObject_3; // System.Type System.Xml.XmlSqlBinaryReader::TypeOfString Type_t* ___TypeOfString_4; // System.Type[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlSqlBinaryReader::TokenTypeMap TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___TokenTypeMap_5; // System.Byte[] System.Xml.XmlSqlBinaryReader::XsdKatmaiTimeScaleToValueLengthMap ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___XsdKatmaiTimeScaleToValueLengthMap_6; // System.Xml.ReadState[] System.Xml.XmlSqlBinaryReader::ScanState2ReadState ReadStateU5BU5D_tD8D85409A478AA73DD46FD98748D996DDE99B6B0* ___ScanState2ReadState_7; }; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Boolean System.Xml.XmlTextReaderImpl::useAsync bool ___useAsync_3; // System.Xml.XmlTextReaderImpl/LaterInitParam System.Xml.XmlTextReaderImpl::laterInitParam LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* ___laterInitParam_4; // System.Xml.XmlCharType System.Xml.XmlTextReaderImpl::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_5; // System.Xml.XmlTextReaderImpl/ParsingState System.Xml.XmlTextReaderImpl::ps ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 ___ps_6; // System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::parsingFunction int32_t ___parsingFunction_7; // System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::nextParsingFunction int32_t ___nextParsingFunction_8; // System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::nextNextParsingFunction int32_t ___nextNextParsingFunction_9; // System.Xml.XmlTextReaderImpl/NodeData[] System.Xml.XmlTextReaderImpl::nodes NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___nodes_10; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::curNode NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___curNode_11; // System.Int32 System.Xml.XmlTextReaderImpl::index int32_t ___index_12; // System.Int32 System.Xml.XmlTextReaderImpl::curAttrIndex int32_t ___curAttrIndex_13; // System.Int32 System.Xml.XmlTextReaderImpl::attrCount int32_t ___attrCount_14; // System.Int32 System.Xml.XmlTextReaderImpl::attrHashtable int32_t ___attrHashtable_15; // System.Int32 System.Xml.XmlTextReaderImpl::attrDuplWalkCount int32_t ___attrDuplWalkCount_16; // System.Boolean System.Xml.XmlTextReaderImpl::attrNeedNamespaceLookup bool ___attrNeedNamespaceLookup_17; // System.Boolean System.Xml.XmlTextReaderImpl::fullAttrCleanup bool ___fullAttrCleanup_18; // System.Xml.XmlTextReaderImpl/NodeData[] System.Xml.XmlTextReaderImpl::attrDuplSortingArray NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___attrDuplSortingArray_19; // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_20; // System.Boolean System.Xml.XmlTextReaderImpl::nameTableFromSettings bool ___nameTableFromSettings_21; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::xmlResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_22; // System.String System.Xml.XmlTextReaderImpl::url String_t* ___url_23; // System.Boolean System.Xml.XmlTextReaderImpl::normalize bool ___normalize_24; // System.Boolean System.Xml.XmlTextReaderImpl::supportNamespaces bool ___supportNamespaces_25; // System.Xml.WhitespaceHandling System.Xml.XmlTextReaderImpl::whitespaceHandling int32_t ___whitespaceHandling_26; // System.Xml.DtdProcessing System.Xml.XmlTextReaderImpl::dtdProcessing int32_t ___dtdProcessing_27; // System.Xml.EntityHandling System.Xml.XmlTextReaderImpl::entityHandling int32_t ___entityHandling_28; // System.Boolean System.Xml.XmlTextReaderImpl::ignorePIs bool ___ignorePIs_29; // System.Boolean System.Xml.XmlTextReaderImpl::ignoreComments bool ___ignoreComments_30; // System.Boolean System.Xml.XmlTextReaderImpl::checkCharacters bool ___checkCharacters_31; // System.Int32 System.Xml.XmlTextReaderImpl::lineNumberOffset int32_t ___lineNumberOffset_32; // System.Int32 System.Xml.XmlTextReaderImpl::linePositionOffset int32_t ___linePositionOffset_33; // System.Boolean System.Xml.XmlTextReaderImpl::closeInput bool ___closeInput_34; // System.Int64 System.Xml.XmlTextReaderImpl::maxCharactersInDocument int64_t ___maxCharactersInDocument_35; // System.Int64 System.Xml.XmlTextReaderImpl::maxCharactersFromEntities int64_t ___maxCharactersFromEntities_36; // System.Boolean System.Xml.XmlTextReaderImpl::v1Compat bool ___v1Compat_37; // System.Xml.XmlNamespaceManager System.Xml.XmlTextReaderImpl::namespaceManager XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___namespaceManager_38; // System.String System.Xml.XmlTextReaderImpl::lastPrefix String_t* ___lastPrefix_39; // System.Xml.XmlTextReaderImpl/XmlContext System.Xml.XmlTextReaderImpl::xmlContext XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* ___xmlContext_40; // System.Xml.XmlTextReaderImpl/ParsingState[] System.Xml.XmlTextReaderImpl::parsingStatesStack ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* ___parsingStatesStack_41; // System.Int32 System.Xml.XmlTextReaderImpl::parsingStatesStackTop int32_t ___parsingStatesStackTop_42; // System.String System.Xml.XmlTextReaderImpl::reportedBaseUri String_t* ___reportedBaseUri_43; // System.Text.Encoding System.Xml.XmlTextReaderImpl::reportedEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___reportedEncoding_44; // System.Xml.IDtdInfo System.Xml.XmlTextReaderImpl::dtdInfo RuntimeObject* ___dtdInfo_45; // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::fragmentType int32_t ___fragmentType_46; // System.Xml.XmlParserContext System.Xml.XmlTextReaderImpl::fragmentParserContext XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___fragmentParserContext_47; // System.Boolean System.Xml.XmlTextReaderImpl::fragment bool ___fragment_48; // System.Xml.IncrementalReadDecoder System.Xml.XmlTextReaderImpl::incReadDecoder IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* ___incReadDecoder_49; // System.Xml.XmlTextReaderImpl/IncrementalReadState System.Xml.XmlTextReaderImpl::incReadState int32_t ___incReadState_50; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl::incReadLineInfo LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___incReadLineInfo_51; // System.Int32 System.Xml.XmlTextReaderImpl::incReadDepth int32_t ___incReadDepth_52; // System.Int32 System.Xml.XmlTextReaderImpl::incReadLeftStartPos int32_t ___incReadLeftStartPos_53; // System.Int32 System.Xml.XmlTextReaderImpl::incReadLeftEndPos int32_t ___incReadLeftEndPos_54; // System.Int32 System.Xml.XmlTextReaderImpl::attributeValueBaseEntityId int32_t ___attributeValueBaseEntityId_55; // System.Boolean System.Xml.XmlTextReaderImpl::emptyEntityInAttributeResolved bool ___emptyEntityInAttributeResolved_56; // System.Xml.IValidationEventHandling System.Xml.XmlTextReaderImpl::validationEventHandling RuntimeObject* ___validationEventHandling_57; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate System.Xml.XmlTextReaderImpl::onDefaultAttributeUse OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* ___onDefaultAttributeUse_58; // System.Boolean System.Xml.XmlTextReaderImpl::validatingReaderCompatFlag bool ___validatingReaderCompatFlag_59; // System.Boolean System.Xml.XmlTextReaderImpl::addDefaultAttributesAndNormalize bool ___addDefaultAttributesAndNormalize_60; // System.Text.StringBuilder System.Xml.XmlTextReaderImpl::stringBuilder StringBuilder_t* ___stringBuilder_61; // System.Boolean System.Xml.XmlTextReaderImpl::rootElementParsed bool ___rootElementParsed_62; // System.Boolean System.Xml.XmlTextReaderImpl::standalone bool ___standalone_63; // System.Int32 System.Xml.XmlTextReaderImpl::nextEntityId int32_t ___nextEntityId_64; // System.Xml.XmlTextReaderImpl/ParsingMode System.Xml.XmlTextReaderImpl::parsingMode int32_t ___parsingMode_65; // System.Xml.ReadState System.Xml.XmlTextReaderImpl::readState int32_t ___readState_66; // System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl::lastEntity RuntimeObject* ___lastEntity_67; // System.Boolean System.Xml.XmlTextReaderImpl::afterResetState bool ___afterResetState_68; // System.Int32 System.Xml.XmlTextReaderImpl::documentStartBytePos int32_t ___documentStartBytePos_69; // System.Int32 System.Xml.XmlTextReaderImpl::readValueOffset int32_t ___readValueOffset_70; // System.Int64 System.Xml.XmlTextReaderImpl::charactersInDocument int64_t ___charactersInDocument_71; // System.Int64 System.Xml.XmlTextReaderImpl::charactersFromEntities int64_t ___charactersFromEntities_72; // System.Collections.Generic.Dictionary`2 System.Xml.XmlTextReaderImpl::currentEntities Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* ___currentEntities_73; // System.Boolean System.Xml.XmlTextReaderImpl::disableUndeclaredEntityCheck bool ___disableUndeclaredEntityCheck_74; // System.Xml.XmlReader System.Xml.XmlTextReaderImpl::outerReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___outerReader_75; // System.Boolean System.Xml.XmlTextReaderImpl::xmlResolverIsSet bool ___xmlResolverIsSet_76; // System.String System.Xml.XmlTextReaderImpl::Xml String_t* ___Xml_77; // System.String System.Xml.XmlTextReaderImpl::XmlNs String_t* ___XmlNs_78; // System.Threading.Tasks.Task`1> System.Xml.XmlTextReaderImpl::parseText_dummyTask Task_1_tB493F74D58DB1761E087206849D953E99D07600B* ___parseText_dummyTask_79; }; // System.Xml.XmlTextWriter struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F { // System.IO.TextWriter System.Xml.XmlTextWriter::textWriter TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_1; // System.Xml.XmlTextEncoder System.Xml.XmlTextWriter::xmlEncoder XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* ___xmlEncoder_2; // System.Text.Encoding System.Xml.XmlTextWriter::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; // System.Xml.Formatting System.Xml.XmlTextWriter::formatting int32_t ___formatting_4; // System.Boolean System.Xml.XmlTextWriter::indented bool ___indented_5; // System.Int32 System.Xml.XmlTextWriter::indentation int32_t ___indentation_6; // System.Char System.Xml.XmlTextWriter::indentChar Il2CppChar ___indentChar_7; // System.Xml.XmlTextWriter/TagInfo[] System.Xml.XmlTextWriter::stack TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* ___stack_8; // System.Int32 System.Xml.XmlTextWriter::top int32_t ___top_9; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTable StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTable_10; // System.Xml.XmlTextWriter/State System.Xml.XmlTextWriter::currentState int32_t ___currentState_11; // System.Xml.XmlTextWriter/Token System.Xml.XmlTextWriter::lastToken int32_t ___lastToken_12; // System.Xml.XmlTextWriterBase64Encoder System.Xml.XmlTextWriter::base64Encoder XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* ___base64Encoder_13; // System.Char System.Xml.XmlTextWriter::quoteChar Il2CppChar ___quoteChar_14; // System.Char System.Xml.XmlTextWriter::curQuoteChar Il2CppChar ___curQuoteChar_15; // System.Boolean System.Xml.XmlTextWriter::namespaces bool ___namespaces_16; // System.Xml.XmlTextWriter/SpecialAttr System.Xml.XmlTextWriter::specialAttr int32_t ___specialAttr_17; // System.String System.Xml.XmlTextWriter::prefixForXmlNs String_t* ___prefixForXmlNs_18; // System.Boolean System.Xml.XmlTextWriter::flush bool ___flush_19; // System.Xml.XmlTextWriter/Namespace[] System.Xml.XmlTextWriter::nsStack NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* ___nsStack_20; // System.Int32 System.Xml.XmlTextWriter::nsTop int32_t ___nsTop_21; // System.Collections.Generic.Dictionary`2 System.Xml.XmlTextWriter::nsHashtable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___nsHashtable_22; // System.Boolean System.Xml.XmlTextWriter::useNsHashtable bool ___useNsHashtable_23; // System.Xml.XmlCharType System.Xml.XmlTextWriter::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_24; }; struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields { // System.String[] System.Xml.XmlTextWriter::stateName StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___stateName_25; // System.String[] System.Xml.XmlTextWriter::tokenName StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___tokenName_26; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDefault StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTableDefault_27; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDocument StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTableDocument_28; }; // System.Xml.XmlUtf8RawTextWriter struct XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B { // System.Boolean System.Xml.XmlUtf8RawTextWriter::useAsync bool ___useAsync_3; // System.Byte[] System.Xml.XmlUtf8RawTextWriter::bufBytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bufBytes_4; // System.IO.Stream System.Xml.XmlUtf8RawTextWriter::stream Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; // System.Text.Encoding System.Xml.XmlUtf8RawTextWriter::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_6; // System.Xml.XmlCharType System.Xml.XmlUtf8RawTextWriter::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_7; // System.Int32 System.Xml.XmlUtf8RawTextWriter::bufPos int32_t ___bufPos_8; // System.Int32 System.Xml.XmlUtf8RawTextWriter::textPos int32_t ___textPos_9; // System.Int32 System.Xml.XmlUtf8RawTextWriter::contentPos int32_t ___contentPos_10; // System.Int32 System.Xml.XmlUtf8RawTextWriter::cdataPos int32_t ___cdataPos_11; // System.Int32 System.Xml.XmlUtf8RawTextWriter::attrEndPos int32_t ___attrEndPos_12; // System.Int32 System.Xml.XmlUtf8RawTextWriter::bufLen int32_t ___bufLen_13; // System.Boolean System.Xml.XmlUtf8RawTextWriter::writeToNull bool ___writeToNull_14; // System.Boolean System.Xml.XmlUtf8RawTextWriter::hadDoubleBracket bool ___hadDoubleBracket_15; // System.Boolean System.Xml.XmlUtf8RawTextWriter::inAttributeValue bool ___inAttributeValue_16; // System.Xml.NewLineHandling System.Xml.XmlUtf8RawTextWriter::newLineHandling int32_t ___newLineHandling_17; // System.Boolean System.Xml.XmlUtf8RawTextWriter::closeOutput bool ___closeOutput_18; // System.Boolean System.Xml.XmlUtf8RawTextWriter::omitXmlDeclaration bool ___omitXmlDeclaration_19; // System.String System.Xml.XmlUtf8RawTextWriter::newLineChars String_t* ___newLineChars_20; // System.Boolean System.Xml.XmlUtf8RawTextWriter::checkCharacters bool ___checkCharacters_21; // System.Xml.XmlStandalone System.Xml.XmlUtf8RawTextWriter::standalone int32_t ___standalone_22; // System.Xml.XmlOutputMethod System.Xml.XmlUtf8RawTextWriter::outputMethod int32_t ___outputMethod_23; // System.Boolean System.Xml.XmlUtf8RawTextWriter::autoXmlDeclaration bool ___autoXmlDeclaration_24; // System.Boolean System.Xml.XmlUtf8RawTextWriter::mergeCDataSections bool ___mergeCDataSections_25; }; // System.Xml.XmlValidatingReaderImpl struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlReader System.Xml.XmlValidatingReaderImpl::coreReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3; // System.Xml.XmlTextReaderImpl System.Xml.XmlValidatingReaderImpl::coreReaderImpl XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReaderImpl_4; // System.Xml.IXmlNamespaceResolver System.Xml.XmlValidatingReaderImpl::coreReaderNSResolver RuntimeObject* ___coreReaderNSResolver_5; // System.Xml.ValidationType System.Xml.XmlValidatingReaderImpl::validationType int32_t ___validationType_6; // System.Xml.Schema.BaseValidator System.Xml.XmlValidatingReaderImpl::validator BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* ___validator_7; // System.Xml.Schema.XmlSchemaCollection System.Xml.XmlValidatingReaderImpl::schemaCollection XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* ___schemaCollection_8; // System.Boolean System.Xml.XmlValidatingReaderImpl::processIdentityConstraints bool ___processIdentityConstraints_9; // System.Xml.XmlValidatingReaderImpl/ParsingFunction System.Xml.XmlValidatingReaderImpl::parsingFunction int32_t ___parsingFunction_10; // System.Xml.XmlValidatingReaderImpl/ValidationEventHandling System.Xml.XmlValidatingReaderImpl::eventHandling ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* ___eventHandling_11; // System.Xml.XmlParserContext System.Xml.XmlValidatingReaderImpl::parserContext XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___parserContext_12; // System.Xml.ReadContentAsBinaryHelper System.Xml.XmlValidatingReaderImpl::readBinaryHelper ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* ___readBinaryHelper_13; // System.Xml.XmlReader System.Xml.XmlValidatingReaderImpl::outerReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___outerReader_14; }; struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_StaticFields { // System.Xml.XmlResolver System.Xml.XmlValidatingReaderImpl::s_tempResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___s_tempResolver_15; }; // System.Xml.XmlWellFormedWriter struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645 : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F { // System.Xml.XmlWriter System.Xml.XmlWellFormedWriter::writer XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer_1; // System.Xml.XmlRawWriter System.Xml.XmlWellFormedWriter::rawWriter XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter_2; // System.Xml.IXmlNamespaceResolver System.Xml.XmlWellFormedWriter::predefinedNamespaces RuntimeObject* ___predefinedNamespaces_3; // System.Xml.XmlWellFormedWriter/Namespace[] System.Xml.XmlWellFormedWriter::nsStack NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* ___nsStack_4; // System.Int32 System.Xml.XmlWellFormedWriter::nsTop int32_t ___nsTop_5; // System.Collections.Generic.Dictionary`2 System.Xml.XmlWellFormedWriter::nsHashtable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___nsHashtable_6; // System.Boolean System.Xml.XmlWellFormedWriter::useNsHashtable bool ___useNsHashtable_7; // System.Xml.XmlWellFormedWriter/ElementScope[] System.Xml.XmlWellFormedWriter::elemScopeStack ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* ___elemScopeStack_8; // System.Int32 System.Xml.XmlWellFormedWriter::elemTop int32_t ___elemTop_9; // System.Xml.XmlWellFormedWriter/AttrName[] System.Xml.XmlWellFormedWriter::attrStack AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* ___attrStack_10; // System.Int32 System.Xml.XmlWellFormedWriter::attrCount int32_t ___attrCount_11; // System.Collections.Generic.Dictionary`2 System.Xml.XmlWellFormedWriter::attrHashTable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___attrHashTable_12; // System.Xml.XmlWellFormedWriter/SpecialAttribute System.Xml.XmlWellFormedWriter::specAttr int32_t ___specAttr_13; // System.Xml.XmlWellFormedWriter/AttributeValueCache System.Xml.XmlWellFormedWriter::attrValueCache AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* ___attrValueCache_14; // System.String System.Xml.XmlWellFormedWriter::curDeclPrefix String_t* ___curDeclPrefix_15; // System.Xml.XmlWellFormedWriter/State[] System.Xml.XmlWellFormedWriter::stateTable StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* ___stateTable_16; // System.Xml.XmlWellFormedWriter/State System.Xml.XmlWellFormedWriter::currentState int32_t ___currentState_17; // System.Boolean System.Xml.XmlWellFormedWriter::checkCharacters bool ___checkCharacters_18; // System.Boolean System.Xml.XmlWellFormedWriter::omitDuplNamespaces bool ___omitDuplNamespaces_19; // System.Boolean System.Xml.XmlWellFormedWriter::writeEndDocumentOnClose bool ___writeEndDocumentOnClose_20; // System.Xml.ConformanceLevel System.Xml.XmlWellFormedWriter::conformanceLevel int32_t ___conformanceLevel_21; // System.Boolean System.Xml.XmlWellFormedWriter::dtdWritten bool ___dtdWritten_22; // System.Boolean System.Xml.XmlWellFormedWriter::xmlDeclFollows bool ___xmlDeclFollows_23; // System.Xml.XmlCharType System.Xml.XmlWellFormedWriter::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_24; // System.Xml.SecureStringHasher System.Xml.XmlWellFormedWriter::hasher SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* ___hasher_25; }; struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields { // System.String[] System.Xml.XmlWellFormedWriter::stateName StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___stateName_26; // System.String[] System.Xml.XmlWellFormedWriter::tokenName StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___tokenName_27; // System.Xml.WriteState[] System.Xml.XmlWellFormedWriter::state2WriteState WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF* ___state2WriteState_28; // System.Xml.XmlWellFormedWriter/State[] System.Xml.XmlWellFormedWriter::StateTableDocument StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* ___StateTableDocument_29; // System.Xml.XmlWellFormedWriter/State[] System.Xml.XmlWellFormedWriter::StateTableAuto StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* ___StateTableAuto_30; }; // System.Xml.XmlWriterSettings struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674 : public RuntimeObject { // System.Boolean System.Xml.XmlWriterSettings::useAsync bool ___useAsync_0; // System.Text.Encoding System.Xml.XmlWriterSettings::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_1; // System.Boolean System.Xml.XmlWriterSettings::omitXmlDecl bool ___omitXmlDecl_2; // System.Xml.NewLineHandling System.Xml.XmlWriterSettings::newLineHandling int32_t ___newLineHandling_3; // System.String System.Xml.XmlWriterSettings::newLineChars String_t* ___newLineChars_4; // System.Xml.TriState System.Xml.XmlWriterSettings::indent int32_t ___indent_5; // System.String System.Xml.XmlWriterSettings::indentChars String_t* ___indentChars_6; // System.Boolean System.Xml.XmlWriterSettings::newLineOnAttributes bool ___newLineOnAttributes_7; // System.Boolean System.Xml.XmlWriterSettings::closeOutput bool ___closeOutput_8; // System.Xml.NamespaceHandling System.Xml.XmlWriterSettings::namespaceHandling int32_t ___namespaceHandling_9; // System.Xml.ConformanceLevel System.Xml.XmlWriterSettings::conformanceLevel int32_t ___conformanceLevel_10; // System.Boolean System.Xml.XmlWriterSettings::checkCharacters bool ___checkCharacters_11; // System.Boolean System.Xml.XmlWriterSettings::writeEndDocumentOnClose bool ___writeEndDocumentOnClose_12; // System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::outputMethod int32_t ___outputMethod_13; // System.Collections.Generic.List`1 System.Xml.XmlWriterSettings::cdataSections List_1_t43EC7C138A17FAAD7120408F039923082A70301A* ___cdataSections_14; // System.Boolean System.Xml.XmlWriterSettings::doNotEscapeUriAttributes bool ___doNotEscapeUriAttributes_15; // System.Boolean System.Xml.XmlWriterSettings::mergeCDataSections bool ___mergeCDataSections_16; // System.String System.Xml.XmlWriterSettings::mediaType String_t* ___mediaType_17; // System.String System.Xml.XmlWriterSettings::docTypeSystem String_t* ___docTypeSystem_18; // System.String System.Xml.XmlWriterSettings::docTypePublic String_t* ___docTypePublic_19; // System.Xml.XmlStandalone System.Xml.XmlWriterSettings::standalone int32_t ___standalone_20; // System.Boolean System.Xml.XmlWriterSettings::autoXmlDecl bool ___autoXmlDecl_21; // System.Boolean System.Xml.XmlWriterSettings::isReadOnly bool ___isReadOnly_22; }; // System.Xml.XsdValidatingReader struct XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlReader System.Xml.XsdValidatingReader::coreReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3; // System.Xml.IXmlNamespaceResolver System.Xml.XsdValidatingReader::coreReaderNSResolver RuntimeObject* ___coreReaderNSResolver_4; // System.Xml.IXmlNamespaceResolver System.Xml.XsdValidatingReader::thisNSResolver RuntimeObject* ___thisNSResolver_5; // System.Xml.Schema.XmlSchemaValidator System.Xml.XsdValidatingReader::validator XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* ___validator_6; // System.Xml.XmlResolver System.Xml.XsdValidatingReader::xmlResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_7; // System.Xml.Schema.ValidationEventHandler System.Xml.XsdValidatingReader::validationEvent ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___validationEvent_8; // System.Xml.XsdValidatingReader/ValidatingReaderState System.Xml.XsdValidatingReader::validationState int32_t ___validationState_9; // System.Xml.Schema.XmlValueGetter System.Xml.XsdValidatingReader::valueGetter XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* ___valueGetter_10; // System.Xml.XmlNamespaceManager System.Xml.XsdValidatingReader::nsManager XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsManager_11; // System.Boolean System.Xml.XsdValidatingReader::manageNamespaces bool ___manageNamespaces_12; // System.Boolean System.Xml.XsdValidatingReader::processInlineSchema bool ___processInlineSchema_13; // System.Boolean System.Xml.XsdValidatingReader::replayCache bool ___replayCache_14; // System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::cachedNode ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* ___cachedNode_15; // System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::attributePSVI AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ___attributePSVI_16; // System.Int32 System.Xml.XsdValidatingReader::attributeCount int32_t ___attributeCount_17; // System.Int32 System.Xml.XsdValidatingReader::coreReaderAttributeCount int32_t ___coreReaderAttributeCount_18; // System.Int32 System.Xml.XsdValidatingReader::currentAttrIndex int32_t ___currentAttrIndex_19; // System.Xml.AttributePSVIInfo[] System.Xml.XsdValidatingReader::attributePSVINodes AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* ___attributePSVINodes_20; // System.Collections.ArrayList System.Xml.XsdValidatingReader::defaultAttributes ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___defaultAttributes_21; // System.Xml.Schema.Parser System.Xml.XsdValidatingReader::inlineSchemaParser Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* ___inlineSchemaParser_22; // System.Object System.Xml.XsdValidatingReader::atomicValue RuntimeObject* ___atomicValue_23; // System.Xml.Schema.XmlSchemaInfo System.Xml.XsdValidatingReader::xmlSchemaInfo XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___xmlSchemaInfo_24; // System.String System.Xml.XsdValidatingReader::originalAtomicValueString String_t* ___originalAtomicValueString_25; // System.Xml.XmlNameTable System.Xml.XsdValidatingReader::coreReaderNameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___coreReaderNameTable_26; // System.Xml.XsdCachingReader System.Xml.XsdValidatingReader::cachingReader XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader_27; // System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::textNode ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* ___textNode_28; // System.String System.Xml.XsdValidatingReader::NsXmlNs String_t* ___NsXmlNs_29; // System.String System.Xml.XsdValidatingReader::NsXs String_t* ___NsXs_30; // System.String System.Xml.XsdValidatingReader::NsXsi String_t* ___NsXsi_31; // System.String System.Xml.XsdValidatingReader::XsiType String_t* ___XsiType_32; // System.String System.Xml.XsdValidatingReader::XsiNil String_t* ___XsiNil_33; // System.String System.Xml.XsdValidatingReader::XsdSchema String_t* ___XsdSchema_34; // System.String System.Xml.XsdValidatingReader::XsiSchemaLocation String_t* ___XsiSchemaLocation_35; // System.String System.Xml.XsdValidatingReader::XsiNoNamespaceSchemaLocation String_t* ___XsiNoNamespaceSchemaLocation_36; // System.Xml.XmlCharType System.Xml.XsdValidatingReader::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_37; // System.Xml.IXmlLineInfo System.Xml.XsdValidatingReader::lineInfo RuntimeObject* ___lineInfo_38; // System.Xml.ReadContentAsBinaryHelper System.Xml.XsdValidatingReader::readBinaryHelper ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* ___readBinaryHelper_39; // System.Xml.XsdValidatingReader/ValidatingReaderState System.Xml.XsdValidatingReader::savedState int32_t ___savedState_40; }; struct XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_StaticFields { // System.Type modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XsdValidatingReader::TypeOfString Type_t* ___TypeOfString_41; }; // System.Xml.XmlEventCache/XmlEvent struct XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2 { // System.Xml.XmlEventCache/XmlEventType System.Xml.XmlEventCache/XmlEvent::eventType int32_t ___eventType_0; // System.String System.Xml.XmlEventCache/XmlEvent::s1 String_t* ___s1_1; // System.String System.Xml.XmlEventCache/XmlEvent::s2 String_t* ___s2_2; // System.String System.Xml.XmlEventCache/XmlEvent::s3 String_t* ___s3_3; // System.Object System.Xml.XmlEventCache/XmlEvent::o RuntimeObject* ___o_4; }; // Native definition for P/Invoke marshalling of System.Xml.XmlEventCache/XmlEvent struct XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_pinvoke { int32_t ___eventType_0; char* ___s1_1; char* ___s2_2; char* ___s3_3; Il2CppIUnknown* ___o_4; }; // Native definition for COM marshalling of System.Xml.XmlEventCache/XmlEvent struct XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_com { int32_t ___eventType_0; Il2CppChar* ___s1_1; Il2CppChar* ___s2_2; Il2CppChar* ___s3_3; Il2CppIUnknown* ___o_4; }; // System.Xml.XmlTextReaderImpl/LaterInitParam struct LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6 : public RuntimeObject { // System.Boolean System.Xml.XmlTextReaderImpl/LaterInitParam::useAsync bool ___useAsync_0; // System.IO.Stream System.Xml.XmlTextReaderImpl/LaterInitParam::inputStream Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___inputStream_1; // System.Byte[] System.Xml.XmlTextReaderImpl/LaterInitParam::inputBytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inputBytes_2; // System.Int32 System.Xml.XmlTextReaderImpl/LaterInitParam::inputByteCount int32_t ___inputByteCount_3; // System.Uri System.Xml.XmlTextReaderImpl/LaterInitParam::inputbaseUri Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___inputbaseUri_4; // System.String System.Xml.XmlTextReaderImpl/LaterInitParam::inputUriStr String_t* ___inputUriStr_5; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl/LaterInitParam::inputUriResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___inputUriResolver_6; // System.Xml.XmlParserContext System.Xml.XmlTextReaderImpl/LaterInitParam::inputContext XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext_7; // System.IO.TextReader System.Xml.XmlTextReaderImpl/LaterInitParam::inputTextReader TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___inputTextReader_8; // System.Xml.XmlTextReaderImpl/InitInputType System.Xml.XmlTextReaderImpl/LaterInitParam::initType int32_t ___initType_9; }; // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF : public RuntimeObject { // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl/NodeData::type int32_t ___type_1; // System.String System.Xml.XmlTextReaderImpl/NodeData::localName String_t* ___localName_2; // System.String System.Xml.XmlTextReaderImpl/NodeData::prefix String_t* ___prefix_3; // System.String System.Xml.XmlTextReaderImpl/NodeData::ns String_t* ___ns_4; // System.String System.Xml.XmlTextReaderImpl/NodeData::nameWPrefix String_t* ___nameWPrefix_5; // System.String System.Xml.XmlTextReaderImpl/NodeData::value String_t* ___value_6; // System.Char[] System.Xml.XmlTextReaderImpl/NodeData::chars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars_7; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::valueStartPos int32_t ___valueStartPos_8; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::valueLength int32_t ___valueLength_9; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl/NodeData::lineInfo LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___lineInfo_10; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl/NodeData::lineInfo2 LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___lineInfo2_11; // System.Char System.Xml.XmlTextReaderImpl/NodeData::quoteChar Il2CppChar ___quoteChar_12; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::depth int32_t ___depth_13; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::isEmptyOrDefault bool ___isEmptyOrDefault_14; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::entityId int32_t ___entityId_15; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::xmlContextPushed bool ___xmlContextPushed_16; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl/NodeData::nextAttrValueChunk NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___nextAttrValueChunk_17; // System.Object System.Xml.XmlTextReaderImpl/NodeData::schemaType RuntimeObject* ___schemaType_18; // System.Object System.Xml.XmlTextReaderImpl/NodeData::typedValue RuntimeObject* ___typedValue_19; }; struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_StaticFields { // System.Xml.XmlTextReaderImpl/NodeData modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlTextReaderImpl/NodeData::s_None NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___s_None_0; }; // System.Xml.XmlTextReaderImpl/XmlContext struct XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE : public RuntimeObject { // System.Xml.XmlSpace System.Xml.XmlTextReaderImpl/XmlContext::xmlSpace int32_t ___xmlSpace_0; // System.String System.Xml.XmlTextReaderImpl/XmlContext::xmlLang String_t* ___xmlLang_1; // System.String System.Xml.XmlTextReaderImpl/XmlContext::defaultNamespace String_t* ___defaultNamespace_2; // System.Xml.XmlTextReaderImpl/XmlContext System.Xml.XmlTextReaderImpl/XmlContext::previousContext XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* ___previousContext_3; }; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.ArgumentException::_paramName String_t* ____paramName_18; }; // System.ArithmeticException struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Xml.HtmlUtf8RawTextWriter struct HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850 : public XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB { // System.Xml.ByteStack System.Xml.HtmlUtf8RawTextWriter::elementScope ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49* ___elementScope_26; // System.Xml.ElementProperties System.Xml.HtmlUtf8RawTextWriter::currentElementProperties uint32_t ___currentElementProperties_27; // System.Xml.AttributeProperties System.Xml.HtmlUtf8RawTextWriter::currentAttributeProperties uint32_t ___currentAttributeProperties_28; // System.Boolean System.Xml.HtmlUtf8RawTextWriter::endsWithAmpersand bool ___endsWithAmpersand_29; // System.Byte[] System.Xml.HtmlUtf8RawTextWriter::uriEscapingBuffer ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___uriEscapingBuffer_30; // System.String System.Xml.HtmlUtf8RawTextWriter::mediaType String_t* ___mediaType_31; // System.Boolean System.Xml.HtmlUtf8RawTextWriter::doNotEscapeUriAttributes bool ___doNotEscapeUriAttributes_32; }; struct HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_StaticFields { // System.Xml.TernaryTreeReadOnly System.Xml.HtmlUtf8RawTextWriter::elementPropertySearch TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* ___elementPropertySearch_33; // System.Xml.TernaryTreeReadOnly System.Xml.HtmlUtf8RawTextWriter::attributePropertySearch TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* ___attributePropertySearch_34; }; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Xml.OnRemoveWriter struct OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F : public MulticastDelegate_t { }; // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553 : public SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B { // System.String System.Xml.Schema.SchemaAttDef::defExpanded String_t* ___defExpanded_11; // System.Int32 System.Xml.Schema.SchemaAttDef::lineNum int32_t ___lineNum_12; // System.Int32 System.Xml.Schema.SchemaAttDef::linePos int32_t ___linePos_13; // System.Int32 System.Xml.Schema.SchemaAttDef::valueLineNum int32_t ___valueLineNum_14; // System.Int32 System.Xml.Schema.SchemaAttDef::valueLinePos int32_t ___valueLinePos_15; // System.Xml.Schema.SchemaAttDef/Reserve System.Xml.Schema.SchemaAttDef::reserved int32_t ___reserved_16; // System.Boolean System.Xml.Schema.SchemaAttDef::defaultValueChecked bool ___defaultValueChecked_17; // System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.SchemaAttDef::schemaAttribute XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* ___schemaAttribute_18; }; struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_StaticFields { // System.Xml.Schema.SchemaAttDef System.Xml.Schema.SchemaAttDef::Empty SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___Empty_19; }; // System.Xml.TextEncodedRawTextWriter struct TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01 : public XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4 { }; // System.Xml.TextUtf8RawTextWriter struct TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73 : public XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB { }; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A : public MulticastDelegate_t { }; // System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema struct XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A : public XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629 { // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::readerAsIXmlSchemaInfo RuntimeObject* ___readerAsIXmlSchemaInfo_7; }; // System.Xml.XmlEncodedRawTextWriterIndent struct XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008 : public XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4 { // System.Int32 System.Xml.XmlEncodedRawTextWriterIndent::indentLevel int32_t ___indentLevel_35; // System.Boolean System.Xml.XmlEncodedRawTextWriterIndent::newLineOnAttributes bool ___newLineOnAttributes_36; // System.String System.Xml.XmlEncodedRawTextWriterIndent::indentChars String_t* ___indentChars_37; // System.Boolean System.Xml.XmlEncodedRawTextWriterIndent::mixedContent bool ___mixedContent_38; // System.Xml.BitStack System.Xml.XmlEncodedRawTextWriterIndent::mixedContentStack BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* ___mixedContentStack_39; // System.Xml.ConformanceLevel System.Xml.XmlEncodedRawTextWriterIndent::conformanceLevel int32_t ___conformanceLevel_40; }; // System.Xml.XmlException struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Xml.XmlException::res String_t* ___res_18; // System.String[] System.Xml.XmlException::args StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args_19; // System.Int32 System.Xml.XmlException::lineNumber int32_t ___lineNumber_20; // System.Int32 System.Xml.XmlException::linePosition int32_t ___linePosition_21; // System.String System.Xml.XmlException::sourceUri String_t* ___sourceUri_22; // System.String System.Xml.XmlException::message String_t* ___message_23; }; // System.Xml.Schema.XmlSchemaElement struct XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970 : public XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE { // System.Boolean System.Xml.Schema.XmlSchemaElement::isAbstract bool ___isAbstract_13; // System.Boolean System.Xml.Schema.XmlSchemaElement::hasAbstractAttribute bool ___hasAbstractAttribute_14; // System.Boolean System.Xml.Schema.XmlSchemaElement::isNillable bool ___isNillable_15; // System.Boolean System.Xml.Schema.XmlSchemaElement::hasNillableAttribute bool ___hasNillableAttribute_16; // System.Boolean System.Xml.Schema.XmlSchemaElement::isLocalTypeDerivationChecked bool ___isLocalTypeDerivationChecked_17; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::block int32_t ___block_18; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::final int32_t ___final_19; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaElement::form int32_t ___form_20; // System.String System.Xml.Schema.XmlSchemaElement::defaultValue String_t* ___defaultValue_21; // System.String System.Xml.Schema.XmlSchemaElement::fixedValue String_t* ___fixedValue_22; // System.String System.Xml.Schema.XmlSchemaElement::name String_t* ___name_23; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::refName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___refName_24; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::substitutionGroup XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___substitutionGroup_25; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::typeName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___typeName_26; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaElement::type XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___type_27; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::qualifiedName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qualifiedName_28; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaElement::elementType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___elementType_29; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::blockResolved int32_t ___blockResolved_30; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::finalResolved int32_t ___finalResolved_31; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaElement::constraints XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___constraints_32; // System.Xml.Schema.SchemaElementDecl System.Xml.Schema.XmlSchemaElement::elementDecl SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___elementDecl_33; }; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Xml.Schema.XmlSchemaException::res String_t* ___res_18; // System.String[] System.Xml.Schema.XmlSchemaException::args StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args_19; // System.String System.Xml.Schema.XmlSchemaException::sourceUri String_t* ___sourceUri_20; // System.Int32 System.Xml.Schema.XmlSchemaException::lineNumber int32_t ___lineNumber_21; // System.Int32 System.Xml.Schema.XmlSchemaException::linePosition int32_t ___linePosition_22; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaException::sourceSchemaObject XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___sourceSchemaObject_23; // System.String System.Xml.Schema.XmlSchemaException::message String_t* ___message_24; }; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8 : public XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF { // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::content XmlSchemaSimpleTypeContent_t84C9B4F059E687FBF7845373F5A6B2795F982091* ___content_19; }; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046 : public MulticastDelegate_t { }; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate struct OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499 : public MulticastDelegate_t { }; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { // System.Object System.ArgumentOutOfRangeException::_actualValue RuntimeObject* ____actualValue_19; }; // System.Xml.HtmlUtf8RawTextWriterIndent struct HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6 : public HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850 { // System.Int32 System.Xml.HtmlUtf8RawTextWriterIndent::indentLevel int32_t ___indentLevel_35; // System.Int32 System.Xml.HtmlUtf8RawTextWriterIndent::endBlockPos int32_t ___endBlockPos_36; // System.String System.Xml.HtmlUtf8RawTextWriterIndent::indentChars String_t* ___indentChars_37; // System.Boolean System.Xml.HtmlUtf8RawTextWriterIndent::newLineOnAttributes bool ___newLineOnAttributes_38; }; // System.OverflowException struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA { }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray { ALIGN_FIELD (8) uint8_t m_Items[1]; inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.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.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray { ALIGN_FIELD (8) Il2CppChar m_Items[1]; inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.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.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.Xml.XmlEventCache/XmlEvent[] struct XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2 : public RuntimeArray { ALIGN_FIELD (8) XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2 m_Items[1]; inline XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* 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, XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___s1_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___s2_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___s3_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___o_4), (void*)NULL); #endif } inline XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___s1_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___s2_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___s3_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___o_4), (void*)NULL); #endif } }; // System.Xml.XmlTextReaderImpl/NodeData[] struct NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610 : public RuntimeArray { ALIGN_FIELD (8) NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* m_Items[1]; inline NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** 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, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Xml.XmlTextReaderImpl/ParsingState[] struct ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29 : public RuntimeArray { ALIGN_FIELD (8) ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 m_Items[1]; inline ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* 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, ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___chars_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___encoding_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___stream_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___decoder_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___bytes_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textReader_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___baseUriStr_13), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___baseUri_14), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___entity_17), (void*)NULL); #endif } inline ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___chars_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___encoding_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___stream_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___decoder_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___bytes_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textReader_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___baseUriStr_13), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___baseUri_14), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___entity_17), (void*)NULL); #endif } }; // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m517E7F9D104FEAE6646EABDDC9C852510E86077C_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, const RuntimeMethod* method) ; // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::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::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::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m72CC2F1213D1C1B8ABEDE31082D07B67EC873B13_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, int32_t ___value1, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m1087B74B4FF5004CBB6CC864FF1C87B6DB138505_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ; // T System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Add(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ; // T System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Tuple`4::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_gshared (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9* __this, int32_t ___item10, int32_t ___item21, int32_t ___item32, bool ___item43, const RuntimeMethod* method) ; // System.Threading.Tasks.Task`1 System.Threading.Tasks.Task::FromResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* Task_FromResult_TisRuntimeObject_mCF2DB27B9C76CBB36764EAAC15108BE463AC3A0A_gshared (RuntimeObject* ___result0, const RuntimeMethod* method) ; // TResult System.Threading.Tasks.Task`1::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26_gshared (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, const RuntimeMethod* method) ; // System.Void System.Array::Sort(T[],System.Collections.Generic.IComparer`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method) ; // System.Void System.Array::Sort(T[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRuntimeObject_m0F03C2B2D8AD873C5CA0080671957FD314259ED9_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ; // System.Int32 System.Array::BinarySearch(T[],T,System.Collections.Generic.IComparer`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriter__ctor_mA1F2A26D176CDD4BE7707C2E0226ACEB775735DD (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::Init(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_Init_mD5E84F5EA6732D783A82EFCD41C7438340266ACA (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriter_WriteDocType_mDC08A1EE2173D0CC6CC54C45F78B6D54E6DF278C (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) ; // System.Void System.Xml.ByteStack::Push(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteStack_Push_m47D6E14644B1038EDABCC87FE259AAB9368B8871 (ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49* __this, uint8_t ___data0, 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.Byte System.Xml.TernaryTreeReadOnly::FindCaseInsensitiveString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t TernaryTreeReadOnly_FindCaseInsensitiveString_m790869604E4C0130B54112156A0004519D4BA687 (TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* __this, String_t* ___stringToFind0, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::WriteIndent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUtf8RawTextWriter::RawText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___s0, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriter::WriteMetaElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriter_WriteMetaElement_m7944FF591B4CF1665D569E37D4450FCC0E78878C (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* __this, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriter_WriteEndElement_m5421A2A570B651EEA581B84FE4C023EEC931A013 (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ; // System.Void System.Xml.HtmlUtf8RawTextWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriter_WriteStartAttribute_m71BF2DA3F5CEDF6A310A7D8AB0EF185939EA9842 (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_FlushBuffer_m380AF5AC857AFEFB88FD4D4A223CE2F61D0B624A (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlWriterSettings::get_IndentChars() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_NewLineOnAttributes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Void System.Xml.IncrementalReadDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDecoder__ctor_mE733A01D272115149EA92BC8D2CA04B1E6087FB7 (IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlRawWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlWriterSettings::get_DocTypeSystem() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_DocTypeSystem_mA52DF45898F37EFBFAFFB19C5FF0E85DB1D59AB1_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlWriterSettings::get_DocTypePublic() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_DocTypePublic_mCD450846EDA3E29E0627CBFF9A694BC276C9D847_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::get_OutputMethod() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_AutoXmlDeclaration() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Xml.XmlStandalone System.Xml.XmlWriterSettings::get_Standalone() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Collections.Generic.List`1 System.Xml.XmlWriterSettings::get_CDataSectionElements() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t43EC7C138A17FAAD7120408F039923082A70301A* XmlWriterSettings_get_CDataSectionElements_m41A55F92925DE680C957E3E18CF5414EB8D6DF58_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_inline (List_1_t43EC7C138A17FAAD7120408F039923082A70301A* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // System.Void System.Xml.BitStack::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitStack__ctor_m9BADB5496087F772604E9F62D3B18C07630EA45A (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m9B62B0AF42B8D720A217CCF7D03D8242D1D7FA4B (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426*, const RuntimeMethod*))Dictionary_2__ctor_m517E7F9D104FEAE6646EABDDC9C852510E86077C_gshared)(__this, method); } // System.Void System.Xml.XmlQualifiedName::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_mD1D3B6997D1B544D421B704520AD12E4C120D634 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C List_1_GetEnumerator_m568CB3E67C19B9174F2AD57A64A72D95F93191A1 (List_1_t43EC7C138A17FAAD7120408F039923082A70301A* __this, const RuntimeMethod* method) { return (( Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C (*) (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_mC605D2D31727D8396798863F0D14AB7F45E74EA7 (Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C* __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator::get_Current() inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* Enumerator_get_Current_mC4F2F141ED84510A73B235D519BCFD8FE1FF5BD5_inline (Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C* __this, const RuntimeMethod* method) { return (( XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* (*) (Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_mD4F20774F164452D05D56D2A3101DC82B30F762D (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_m72CC2F1213D1C1B8ABEDE31082D07B67EC873B13_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_mD2119FFD872E74A6F4997BB265A66364DB3471A1 (Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C* __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method); } // System.Void System.Xml.BitStack::PushBit(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitStack_PushBit_m1781C0D736A215362CD21AD07CAF39EE2909F718 (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, bool ___bit0, const RuntimeMethod* method) ; // System.Void System.Xml.QueryOutputWriter::EndCDataSection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, String_t* ___arg1, 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.Xml.XmlQualifiedName::Init(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName_Init_m2F37BA4297673844DC409B1C7E03849BC95EAAFB (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) inline bool Dictionary_2_ContainsKey_m400FFF2A30F886D75808F2253ED971B963BFD133 (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, const RuntimeMethod*))Dictionary_2_ContainsKey_m1087B74B4FF5004CBB6CC864FF1C87B6DB138505_gshared)(__this, ___key0, method); } // System.Boolean System.Xml.BitStack::PopBit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3 (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.QueryOutputWriter::StartCDataSection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) ; // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ; // System.Boolean System.Xml.BitStack::PeekBit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitStack_PeekBit_m416F1BB8F64059C924312B2416CBE09747B0E1E4 (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.ReadContentAsBinaryHelper::MoveToNextContentNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadContentAsBinaryHelper_MoveToNextContentNode_m7FB239D47130A8324EA15820546E4D43C1E1FBC6 (ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* __this, bool ___moveIfOnContentNode0, 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.XmlException::.ctor(System.String,System.String,System.Xml.IXmlLineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m9B374E074F3F119E162C8075170EAC3D83B903C3 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, String_t* ___arg1, RuntimeObject* ___lineInfo2, const RuntimeMethod* method) ; // System.Void System.Xml.ReadContentAsBinaryHelper::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadContentAsBinaryHelper_Reset_m17AAB38EA5100EAAA4B35BAE7CFA2A4350A0B357 (ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* __this, const RuntimeMethod* method) ; // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ; // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276 (const RuntimeMethod* method) ; // System.Boolean System.String::Equals(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method) ; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::GetHashCodeDelegate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* SecureStringHasher_GetHashCodeDelegate_m6C9C4CBECF82A2B8FE9F2B6B3584E09E10358867 (const RuntimeMethod* method) ; // System.Int32 System.Xml.SecureStringHasher/HashCodeOfStringDelegate::Invoke(System.String,System.Int32,System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_inline (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, 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.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D (Type_t* __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) ; // System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC (MethodInfo_t* ___left0, MethodInfo_t* ___right1, const RuntimeMethod* method) ; // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_CreateDelegate_mA2E221A01A8B3FBEC4C8A529F3C213C60A3A2C53 (Type_t* ___type0, MethodInfo_t* ___method1, const RuntimeMethod* method) ; // System.Void System.Xml.SecureStringHasher/HashCodeOfStringDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashCodeOfStringDelegate__ctor_m5635DF373D683517CDFD80D0EB8C380E78BFFA58 (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_mF6EBA0A44503EE7400D3901E059BDFEB8110B205 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_mEDAEC401E6AB69FC8728E0217038DFEBE2C3F564 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___data0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteRaw_m377C81F6B413480998B3FFBE321070D4B3E3959C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter__ctor_m3FED45E976C290A249ADEFDCB6B4D899997D6FB2 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUtf8RawTextWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___data0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUtf8RawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRaw_m1CD2BE14DD496B9EA6D2093F8555677CC1B52096 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ; // System.Void System.Xml.ValidatingReaderNodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___nodeType0, const RuntimeMethod* method) ; // System.Void System.Xml.AttributePSVIInfo::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributePSVIInfo_Reset_m6BCB21E222189F063C0D2A7ECCB6D72AC9D086AA (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* __this, const RuntimeMethod* method) ; // System.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_m6F20EE6D67B53597EFEE48860915168BD55FBF22 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, String_t* ___originalStringValue1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithLineInfoNSSchema__ctor_m717A0AA4ACD08B6E45E0594D00220CB14BAF2284 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckReaderWithLineInfoNS::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithLineInfoNS__ctor_m01293D26DE17269F9DC1E5668C460AB7D97205CC (XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckReaderWithLineInfo::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithLineInfo__ctor_mF1A895DB0EFCB2031EF258B1ADD7AA3C3E8622DE (XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckReaderWithNS::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithNS__ctor_m51BEC76F7ADD099A67A4503BC5E4BBB4446DC8F9 (XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckReader::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader__ctor_m57D1178A8D9AF5D1EE18D16B4B9B96A5F17E5A78 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ; // System.Boolean System.Threading.Tasks.Task::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, const RuntimeMethod* method) ; // System.String System.Xml.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43 (String_t* ___name0, 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.Xml.XmlReaderSettings System.Xml.XmlReaderSettings::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlReaderSettings_Clone_m6581889814EA9982ABCE97535D76722F81972101 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_Async(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_Async_mD6BEC19B95948116F459E8B53B7FDFBFD52135D3 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_ReadOnly(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckReader::CheckAsync() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReader::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Dispose_m48A2333E0A2A858E7F6B3B0B7DE63E33B819929D (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAsyncCheckWriter::CheckAsync() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Dispose_mA0416A9B156E8271B9E129F3E91FEF6EE0A2B373 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, const RuntimeMethod* method) ; // System.Xml.XmlWriterSettings System.Xml.XmlWriterSettings::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* XmlWriterSettings_Clone_m7D2132EF36D234189EFE3E94A7EAE6A9E94404B8 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriterSettings::set_ReadOnly(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlWriterSettings_set_ReadOnly_m912EC500806EE683803491EED4796F954F57AB42_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache__ctor_mBA3535680DEC05967B45C29EACDC95374C231C36 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___baseUri0, bool ___hasRootNode1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAutoDetectWriter::.ctor(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter__ctor_mDD91C4B1B4258E663D7C2881F7F53062857E0F8F (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAutoDetectWriter::EnsureWrappedWriter(System.Xml.XmlOutputMethod) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, int32_t ___outMethod0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlAutoDetectWriter::IsHtmlTag(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAutoDetectWriter_IsHtmlTag_mD043B271B38CD5C55CBD65580E92F25C3A02F5C1 (String_t* ___tagName0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAutoDetectWriter::CreateWrappedWriter(System.Xml.XmlOutputMethod) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_CreateWrappedWriter_m3A1C515F1F51D9868C2C6E6B609F43A34FE4CD31 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, int32_t ___outMethod0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlAutoDetectWriter::TextBlockCreatesWriter(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAutoDetectWriter_TextBlockCreatesWriter_m39E5E4747352D31279AA83D2F1B09D479B3CF649 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___textBlock0, const RuntimeMethod* method) ; // System.Xml.XmlCharType System.Xml.XmlCharType::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD (const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsOnlyWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, String_t* ___str0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriterSettings::set_OutputMethod(System.Xml.XmlOutputMethod) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlWriterSettings_set_OutputMethod_m8A74B5EE11DD5C1D00D97B896E36AA504C142837_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Xml.TriState System.Xml.XmlWriterSettings::get_IndentInternal() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_IndentInternal_m3180E0936B1C9CB8252AE222C1D17BB1A0448C22_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriterSettings::set_Indent(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_Indent_m4560606B33CB7EF5DEE0F5B50A81AC8E67622661 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, bool ___value0, const RuntimeMethod* method) ; // System.Xml.XmlWriter System.Xml.XmlWriter::Create(System.IO.TextWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriter_Create_m6CA81400C565A5B8E379150404E136B42B4F69A9 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___output0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ; // System.Xml.XmlRawWriter System.Xml.XmlWellFormedWriter::get_RawWriter() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* XmlWellFormedWriter_get_RawWriter_m214811761EBBCB44F46CF8C3590C4611CFE134CA_inline (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ; // System.Xml.XmlWriter System.Xml.XmlWriter::Create(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriter_Create_mF8D6A7AF4B53BDB0896D95E0A6D9ECE6042C3856 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___output0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::EndEvents() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_EndEvents_m14930E127C0BC8C9139CC572BC1238721698075A (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::EventsToWriter(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_EventsToWriter_m80E785FE11C18BA12E44016345E1F26273F4E361 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) ; // System.Void System.Xml.OnRemoveWriter::Invoke(System.Xml.XmlRawWriter) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_inline (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_Async() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Xml.NewLineHandling System.Xml.XmlWriterSettings::get_NewLineHandling() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_OmitXmlDeclaration() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlWriterSettings::get_NewLineChars() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_CheckCharacters() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_CloseOutput() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlWriterSettings::get_MergeCDataSections() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::ValidateContentChars(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___chars0, String_t* ___propertyName1, bool ___allowOnlyWhitespace2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_m3D7E707E2F95076DC80511A09C53AD5BCD0F6CDB (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.XmlWriterSettings::get_Encoding() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Void System.Xml.CharEntityEncoderFallback::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEntityEncoderFallback__ctor_mD61861CAC7602A03E97260E095E68090096838C6 (CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* __this, const RuntimeMethod* method) ; // System.Void System.Text.Encoding::set_EncoderFallback(System.Text.EncoderFallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_EncoderFallback_m479A67230C286D29DAC4A9A93074708666FD483D (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* __this, EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::ChangeTextContentMark(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::RawText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___s0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCDataSection(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCDataSection_m1884616808AA94C9F91F25C9E65A42059B1C2FEE (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCommentOrPi(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCommentOrPi_m62FCB36114391207A8A947D3EF8B0144A809BD48 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, int32_t ___stopChar1, const RuntimeMethod* method) ; // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_InvariantInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621 (const RuntimeMethod* method) ; // System.String System.Int32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsCharData(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsCharData_m39C87F830CD89F4F0029AA0338BB9AB5EFCC1AF5 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Exception System.Xml.XmlConvert::CreateInvalidCharException(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlConvert_CreateInvalidCharException_mDB4221F3CC7FE0F027C0BE5E94398367C6D528CF (Il2CppChar ___invChar0, Il2CppChar ___nextChar1, const RuntimeMethod* method) ; // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460 (const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteAttributeTextBlock(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteAttributeTextBlock_m8F58D0D9F8C0155608FAB1F3216FD9BA8F182913 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteElementTextBlock(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteElementTextBlock_m3D8057822B0A953E78DAD98BB6017168BCFFD49C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlCharType::CombineSurrogateChar(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlCharType_CombineSurrogateChar_mCCBF257D9AE510DB9D3AA852848DCEB8AE0B9512 (int32_t ___lowChar0, int32_t ___highChar1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteRawWithCharChecking(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteRawWithCharChecking_m9778A2D7ABE8D810FABF80BC975E67855D1C741C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::FlushEncoder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_FlushEncoder_mF80738DA0BD3236805E929D8953CC9955543E49B (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) ; // System.Void System.Xml.CharEntityEncoderFallback::Reset(System.Int32[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEntityEncoderFallback_Reset_mD7EF1BA49617CFC5425B5C99F91F66A1B56A37D0 (CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___textContentMarks0, int32_t ___endMarkPos1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::EncodeChars(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_EncodeChars_m60B652794603AF669DE64C260C032DCEC90351D4 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, int32_t ___startOffset0, int32_t ___endOffset1, bool ___writeAllToStream2, const RuntimeMethod* method) ; // System.Void System.Xml.CharEntityEncoderFallback::set_StartOffset(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CharEntityEncoderFallback_set_StartOffset_mA243578474DC2FDE44519F05E12676FE3D0A2865_inline (CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::AmpEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_AmpEntity_mAD4A4E14B025252BD0860304EC56693F42E29BE3 (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::LtEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_LtEntity_mEE354D2DC4772A1E75D80A04E58B69A7DBAF77AE (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::GtEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_GtEntity_mB805F4EB5DEBF891F29AE3C31C0DA03534A35123 (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::QuoteEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_QuoteEntity_m0FEC9CCA49BA830D4AB7FDCC3CF2A1C421552B6E (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::TabEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_TabEntity_m7491D535FACB27182D168C9C79E46D761CFD0E8A (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::CarriageReturnEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_CarriageReturnEntity_m11DE0373EE203F0128CFEAAAF93CC65E5720E3C2 (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::LineFeedEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_LineFeedEntity_m7E5278BA7006435E8BD82903193161AD5BE973B2 (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsSurrogate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0 (int32_t ___ch0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::EncodeSurrogate(System.Char*,System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85 (Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, Il2CppChar* ___pDst2, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::InvalidXmlChar(System.Int32,System.Char*,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, int32_t ___ch0, Il2CppChar* ___pDst1, bool ___entitize2, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::WriteNewLine(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::RawText(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_RawText_mA929119ED811F24E33A792F319E86CD409AF447A (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::RawEndCData(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_RawEndCData_m0736AD01696CBC33642EE400C3B19CB6B03FA8DF (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::RawStartCData(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_RawStartCData_m7A53A704BC3691FC3CEF12C54406F00FA793D50F (Il2CppChar* ___pDst0, const RuntimeMethod* method) ; // System.Exception System.Xml.XmlConvert::CreateInvalidSurrogatePairException(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC (Il2CppChar ___low0, Il2CppChar ___hi1, 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.Exception System.Xml.XmlConvert::CreateInvalidHighSurrogateCharException(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C (Il2CppChar ___hi0, const RuntimeMethod* method) ; // System.Char* System.Xml.XmlEncodedRawTextWriter::CharEntity(System.Char*,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_CharEntity_mC0084BB86762E5BD392380A737C148C652E66580 (Il2CppChar* ___pDst0, Il2CppChar ___ch1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::GrowTextContentMarks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_GrowTextContentMarks_m25414678B0AEDF49A5EE82F2DE217E94D92283B0 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, 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.String System.Xml.Res::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9 (String_t* ___name0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsTextChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsTextChar_mD4DD7B3C0E63D031A4EFFDD6635F68DDE166A4AB (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46 (String_t* ___data0, int32_t ___invCharIndex1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsHighSurrogate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303 (int32_t ___ch0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsLowSurrogate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56 (int32_t ___ch0, 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.String System.UInt32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_m464396B0FE2115F3CEA38AEECDDB0FACC3AADADE (uint32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriterIndent::Init(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_Init_m572EF50317AF81603AC971ABE835C0C3A0C50B63 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteIndent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteDocType_mDBEDCAB711092E22DFE5969871777DD43C3939EA (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteStartElement_mCDCE55482129A24BCC95726DE611FB58CB1632EB (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_StartElementContent_mD809F4166E242A11AD499962421E5883D322F44B (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteEndElement_m2039FDBAFF31B7BF9497D232724F9FB07ABDFC81 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteFullEndElement_m3F8608DE81F8F61E9990264D050AE6579BBD6FE5 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteStartAttribute_mDD0E306F666655493413D9CECDD048D53711CCFA (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCData_m2FD4BC6708C8A44B301A07F379CE77704EEC3849 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteComment_m61806CB2EAC9543B6C217B690AF069ECBC3F6020 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteProcessingInstruction_m7C95C598CABA1C1FC3EE7F67E4480B4C7F832355 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteEntityRef_mDBB5C2F883A9957C5DDE2D8A59A7A33DEF15DDF2 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___name0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCharEntity_mA93124CDD6A6DFD37DFA3F612C1911DF98CFE434 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteSurrogateCharEntity_mC29AC47472E1C4CC4E2FBD4E36900D948766B6A6 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteWhitespace_mFA9FBE6D75A686D9452C0783D1F1EBAAAB6DD05A (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___ws0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteString_mA1C3CF752273BA33AC2C9E63C378C5FF0F509CF7 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEncodedRawTextWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteChars_m199ABAEC5FBFBB7C234A304D5094F58D48ADFB07 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlRawWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteBase64_m3B717B23DDCA782AE1ECD2770444F8978EB12D4C (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ; // System.Int32 System.Xml.Xsl.Runtime.StringConcat::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t StringConcat_get_Count_mDCCC5B17A9A44FD12C76AAB3429C50663D243BDC_inline (StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.Runtime.StringConcat::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringConcat_GetResult_mE64A54D6A86088207D9DD7FF3E44728B139A2F05 (StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* __this, const RuntimeMethod* method) ; // T System.Collections.Generic.List`1::get_Item(System.Int32) inline XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* List_1_get_Item_m3104C5DB2248D9BA223DD03C2192F5FFC916FE36 (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* __this, int32_t ___index0, const RuntimeMethod* method) { return (( XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* (*) (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method); } // System.Xml.XmlEventCache/XmlEventType System.Xml.XmlEventCache/XmlEvent::get_EventType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlEvent_get_EventType_m038BF9FCEE1E88C68C6E53DA3EB97B8D1E4639F7_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlEventCache/XmlEvent::get_String1() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlEventCache/XmlEvent::get_String2() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlEventCache/XmlEvent::get_String3() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) ; // System.Object System.Xml.XmlEventCache/XmlEvent::get_Object() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, 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.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m2DA323B178A37D487CFE4D93F59290B37468AE6A_inline (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mC00D6911AF0D2B91232B9984A0DF7D207CE8EB52 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, RuntimeObject* ___o4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_m386A5AA3E1C2993210B54F119A7CA259777E780F (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mE5A355BF13AD4002FB94B2D64C22B5F48E2314E8 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.Runtime.StringConcat::ConcatNoDelimiter(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConcat_ConcatNoDelimiter_mA0E6ECB03B5D0C889C3CF673D27F2111ABD68C9C (StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* __this, String_t* ___s0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, RuntimeObject* ___o1, const RuntimeMethod* method) ; // System.Byte[] System.Xml.XmlEventCache::ToBytes(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* XmlEventCache_ToBytes_mC79174A9CF4B8598BC9940E2A8DC7091E27FE194 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Dispose_m85892819F0A87F253D548139924CE7950DA5D64D (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, bool ___disposing0, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlEventCache::NewEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m20FCF4B1533AD8E1D2C319BC1566FC2DE164593D_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m5CE1F84C43F00B2C200634DB1F2699EF9969AC4C (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m2C8AA9A043EEBD8F233FB8D941307383D6408D69 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_mE72CDB2DD41BD005EAC97578F92F1B29C125F4C4 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_mA6558E961CD189560195579C1AA91A117D94B276 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, RuntimeObject* ___o4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m450055081140BDF68AF5E4C26CDE99127C038238 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, RuntimeObject* ___o1, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mC3AA2A570543C0B07E620F2C594BD268BF5819C7 (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* __this, const RuntimeMethod* method) { (( void (*) (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_inline (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* __this, XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4*, XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method); } // System.Void System.Xml.Xsl.Runtime.StringConcat::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConcat_Clear_m0031C7E309300FC0D9CAD0821F1E9966E8095439 (StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* __this, const RuntimeMethod* method) ; // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7 (RuntimeArray* ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray* ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsMgr1, String_t* ___docTypeName2, String_t* ___pubId3, String_t* ___sysId4, String_t* ___internalSubset5, String_t* ___baseURI6, String_t* ___xmlLang7, int32_t ___xmlSpace8, const RuntimeMethod* method) ; // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsMgr1, String_t* ___docTypeName2, String_t* ___pubId3, String_t* ___sysId4, String_t* ___internalSubset5, String_t* ___baseURI6, String_t* ___xmlLang7, int32_t ___xmlSpace8, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___enc9, 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.Void System.Xml.XmlRawWriterBase64Encoder::.ctor(System.Xml.XmlRawWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriterBase64Encoder__ctor_mEF2A6728BBE676EAA93B4B87A3A8CB40F99B5C94 (XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter0, const RuntimeMethod* method) ; // System.Void System.Xml.Base64Encoder::Encode(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Encode_m93B7F06935043B4D5A76BDAD576A18EB9703AAFA (Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ; // System.String System.String::CreateString(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mFBC28D2E3EB87D497F7E702E4FFAD65F635E44DF (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___val0, const RuntimeMethod* method) ; // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Base64Encoder::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Flush_mBCE3506CD0C1A9EF71FB84544496707BBC562324 (Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2* __this, const RuntimeMethod* method) ; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReader::SkipSubtree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_SkipSubtree_m1CEB7BA6526113C98F922984B0F1D43308C9E0B2 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, 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.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.Boolean System.Xml.XmlReader::IsTextualNode(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_IsTextualNode_mBACCADDE042BC2FB76009BA77C67751E9559172E (int32_t ___nodeType0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String[],System.Xml.IXmlLineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_mC5DF75B19F103B9950AE9C30EE4161CF712442E3 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, RuntimeObject* ___lineInfo2, 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.Void System.IO.StringWriter::.ctor(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_mE3EE42D6B6B6CE4F81849022B19FFC1842FB3FCA (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method) ; // System.Xml.XmlWriter System.Xml.XmlReader::CreateWriterForInnerOuterXml(System.IO.StringWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlReader_CreateWriterForInnerOuterXml_m21C406A18221EA69F47CF9E9D4B92F288EEC5321 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* ___sw0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextWriter::set_QuoteChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_QuoteChar_mBF3C553E38CEA9BA68039EA9ABE254F388D078C3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, Il2CppChar ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReader::WriteAttributeValue(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_WriteAttributeValue_mFAF6C308494C08CABA7459D8B7C3D401D64CD3B3 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___xtw0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReader::WriteNode(System.Xml.XmlWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_WriteNode_m2BF02F458D263346F4E4C0AD7538584902780D0C (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___xtw0, bool ___defattr1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextWriter::.ctor(System.IO.TextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m4AE8363DFA5B2D16F3750514727C63D4A0096489 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___w0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReader::SetNamespacesFlag(System.Xml.XmlTextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_SetNamespacesFlag_m91DA940B33442BDBF6D4E7C8323A4CD38804A43C (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* ___xtw0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReader::get_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_Namespaces_m220590158131867B9ADD16219151AF9A2F2CA097 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextWriter::set_Namespaces(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_Namespaces_m83F3F102E98E87105813A68C7318EF2EB26C1384 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___value0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlValidatingReader::get_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_get_Namespaces_mE9B13FB33252408970F9376B2FF440E9FB71D50F (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method) ; // System.Xml.XmlReader System.Xml.XmlReaderSettings::CreateReader(System.IO.Stream,System.Uri,System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReaderSettings_CreateReader_m28F51E3D8AB4BC9B04D23C0AF9DD99940D8E28D6 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri1, String_t* ___baseUriString2, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext3, const RuntimeMethod* method) ; // System.Xml.XmlReader System.Xml.XmlReaderSettings::CreateReader(System.IO.TextReader,System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReaderSettings_CreateReader_m1B17CDEFA24FB4173AE91DCA3BDA012B1338BD36 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, String_t* ___baseUriString1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext2, 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.Int32 System.Xml.XmlReader::CalcBufferSize(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_CloseInput() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_CloseInput_m59A87285F3D07FC87B95FDA27AB1462D1318342E_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlSqlBinaryReader::.ctor(System.IO.Stream,System.Byte[],System.Int32,System.String,System.Boolean,System.Xml.XmlReaderSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSqlBinaryReader__ctor_m8B549A74D0D60D6068D048978B4BB56ADEA840C6 (XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data1, int32_t ___len2, String_t* ___baseUri3, bool ___closeInput4, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings5, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.Stream,System.Byte[],System.Int32,System.Xml.XmlReaderSettings,System.Uri,System.String,System.Xml.XmlParserContext,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mF623EF59677A63009DEA8DAADDA313BCF40E2A20 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes1, int32_t ___byteCount2, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings3, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri4, String_t* ___baseUriStr5, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context6, bool ___closeInput7, const RuntimeMethod* method) ; // System.Xml.ValidationType System.Xml.XmlReaderSettings::get_ValidationType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Xml.XmlReader System.Xml.XmlReaderSettings::AddValidation(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReaderSettings_AddValidation_m7282A35D9968B991F91BBB6C6BE9A230A45EABF9 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_Async() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Xml.XmlAsyncCheckReader System.Xml.XmlAsyncCheckReader::CreateAsyncCheckWrapper(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* XmlAsyncCheckReader_CreateAsyncCheckWrapper_m86BBCB3E138D17E6A956E42A87A39346ED011D74 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::.ctor(System.Xml.XmlReader) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderDebuggerDisplayProxy__ctor_m56B82747E748FBB7BC8D0A1728D526EA23B54C1A_inline (XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, 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.String System.Xml.XmlConvert::EscapeValueForDebuggerDisplay(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_EscapeValueForDebuggerDisplay_m9C49158A85A26FC96BBC7B0FDDB56111B42A6741 (String_t* ___value0, 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.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReaderDebuggerDisplayProxy_ToString_mEBDAEFA455D93E9934990687C8ED5421E6537FFB (XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_mC0DBEC15D6168D01836D2F7874E775DB14F63B76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::CheckReadOnly(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, String_t* ___propertyName0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_IsXmlResolverSet(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlConfiguration.XmlReaderSection::get_ProhibitDefaultUrlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSection_get_ProhibitDefaultUrlResolver_m22E5E50B536E3F9F7AE02CEA4581B1872DE5E606 (const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_IsXmlResolverSet() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IsXmlResolverSet_mBE7710812B7872C2622B19D7582E8BB43D82EE50_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaSet::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaSet__ctor_m3D365A1BB668EC9DBFBE314F44F00B1AFB3257BD (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, const RuntimeMethod* method) ; // System.Object System.Object::MemberwiseClone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri10, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri21, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader,System.Xml.XmlReaderSettings,System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m285CC96B7C323DF9216D243E3353C9091CC5B288 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, String_t* ___baseUriStr2, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context3, 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.Void System.Xml.XmlReaderSettings::Initialize(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_m06C6F113289807FBE5B5E248DC1E1C9B199CD477 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver0, const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlReaderSettings::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_CreateDefaultResolver_m4DABF525FE995E1C01596871EE0E5F69F338E2A8 (const RuntimeMethod* method) ; // System.Void System.Xml.XmlUrlResolver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* __this, const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlReaderSettings::GetXmlResolver_CheckConfig() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_GetXmlResolver_CheckConfig_mADD7B22F1880EB692D45CED946E9BF39D42034DB (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::EnableLegacyXmlSettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB (const RuntimeMethod* method) ; // System.Void System.Xml.XsdValidatingReader::.ctor(System.Xml.XmlReader,System.Xml.XmlResolver,System.Xml.XmlReaderSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader__ctor_mEFDFB844E2E2199663E2DD8906B0B4A74B3EF5F0 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver1, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings2, const RuntimeMethod* method) ; // System.Xml.XmlValidatingReaderImpl System.Xml.XmlReaderSettings::CreateDtdValidatingReader(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* XmlReaderSettings_CreateDtdValidatingReader_mDFB0D648AD00CA7B1B027BFA1FBA9E0464B70971 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___baseReader0, const RuntimeMethod* method) ; // System.Xml.Schema.ValidationEventHandler System.Xml.XmlReaderSettings::GetEventHandler() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Xml.Schema.XmlSchemaValidationFlags System.Xml.XmlReaderSettings::get_ValidationFlags() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlValidatingReaderImpl::.ctor(System.Xml.XmlReader,System.Xml.Schema.ValidationEventHandler,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl__ctor_mB46D37CD4504EACF6A6E6AB65A3D0EB8A96CF950 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___settingsEventHandler1, bool ___processIdentityConstraints2, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::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); } // T System.Nullable`1::get_Value() inline bool Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_gshared)(__this, method); } // System.Boolean System.Xml.BinaryCompatibility::get_TargetsAtLeast_Desktop_V4_5_2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryCompatibility_get_TargetsAtLeast_Desktop_V4_5_2_mE2DBBB0681C730A3535F391056F24F9F2EBA807C (const RuntimeMethod* method) ; // System.Void System.Nullable`1::.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); } // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::set_Length(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747 (StringBuilder_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value0, int32_t ___startIndex1, int32_t ___charCount2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextEncoder::WriteCharEntityImpl(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteCharEntityImpl_m1ACBC7CA8215F706FA03FED4B6DB523B11F3601A (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextEncoder::WriteEntityRefImpl(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___name0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextEncoder::WriteSurrogateChar(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteSurrogateChar_m81A912C37647DE260C756097A6188DFA25BB1EDB (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, 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.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.XmlTextEncoder::WriteStringFragment(System.String,System.Int32,System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteStringFragment_mC798AEDBDBCA83BA9B7DD619874CF6597B0B3E0A (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___str0, int32_t ___offset1, int32_t ___count2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___helperBuffer3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextEncoder::WriteCharEntityImpl(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteCharEntityImpl_m700BFAD8FCCB6BC22471CD185A4CBC2B6C2F1CF0 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___strVal0, const RuntimeMethod* method) ; // System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m3C50D8232C68E494E862D958C58D6D1CCA326B0B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_OuterReader(System.Xml.XmlReader) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.IO.Stream,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mE0541503471E5E4712F0A74935F45021E9E38676 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___url0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input1, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mDCBE6668C0E914E66347B3F149EF0CA6BB58629A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m4EB73D665A505FC387AAC744C3FB7246556BFF5B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::MoveOffEntityReference() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_MoveOffEntityReference_mA1A8FFC9F91F041D85E01D350BB3824E6534A1B6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlReader::ReadString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_LineNumber_m443B632CB79AF66C3579E9DE0076BCEFBA8785A0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_LinePosition_m94FF883CCF40A6A27BC4BA972BD4DF4293FDC4A8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Collections.Generic.IDictionary`2 System.Xml.XmlTextReaderImpl::GetNamespacesInScope(System.Xml.XmlNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_GetNamespacesInScope_mA03CE089EB011BDAFF02E607734F0D58F4F66810 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___scope0, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_LookupPrefix_mF6D85FCBDA270E1AFC2F1AC19719111A1169BD3D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___namespaceName0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_Namespaces() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_Normalization() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Normalization_mE15D41565024AE5102E07C09891BC40D027E6529_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_Normalization(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_Normalization_mD7A69A6E43CDBC34521C920727D6981675EA87EA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_WhitespaceHandling(System.Xml.WhitespaceHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_WhitespaceHandling_mF03CD74F490259694D1CF7D60C5EC59CEA03B267 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_EntityHandling(System.Xml.EntityHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_XmlValidatingReaderCompatibilityMode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Tuple`4::.ctor(T1,T2,T3,T4) inline void Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8 (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9* __this, int32_t ___item10, int32_t ___item21, int32_t ___item32, bool ___item43, const RuntimeMethod* method) { (( void (*) (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9*, int32_t, int32_t, int32_t, bool, const RuntimeMethod*))Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_gshared)(__this, ___item10, ___item21, ___item32, ___item43, method); } // System.Threading.Tasks.Task`1 System.Threading.Tasks.Task::FromResult>(TResult) inline Task_1_tB493F74D58DB1761E087206849D953E99D07600B* Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9* ___result0, const RuntimeMethod* method) { return (( Task_1_tB493F74D58DB1761E087206849D953E99D07600B* (*) (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9*, const RuntimeMethod*))Task_FromResult_TisRuntimeObject_mCF2DB27B9C76CBB36764EAAC15108BE463AC3A0A_gshared)(___result0, method); } // System.Void System.Xml.XmlTextReaderImpl/NodeData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/XmlContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlContext__ctor_m25BE385DE1A217481A4723BC19A422E3982B3AA8 (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* __this, const RuntimeMethod* method) ; // System.Xml.XmlNameTable System.Xml.XmlReaderSettings::get_NameTable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlReaderSettings_get_NameTable_mAF10C63E556531DDED4ABA060B60FA89D0D263BE_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.NameTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamespaceManager::.ctor(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SetupFromParserContext(System.Xml.XmlParserContext,System.Xml.XmlReaderSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupFromParserContext_mF77555EDF43C9D83D93F376F3A446C4824C1C2FA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_IgnoreWhitespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreWhitespace_mB0490662AA55A785F86A219B1A9317246868AF33_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_IgnoreProcessingInstructions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreProcessingInstructions_mF0F6DF6AA4090054BE46DB02400F18CEC5FC850A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_IgnoreComments() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreComments_m84AF33F6BBE1C9AF5CD0FB0665B923816CED496F_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReaderSettings::get_CheckCharacters() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_CheckCharacters_m92427DD940718F4E7703229BC80C698DA77A6F35_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlReaderSettings::get_LineNumberOffset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_LineNumberOffset_m1A1AC89A54212AD35ABA966620FD66EE6DF6963A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlReaderSettings::get_LinePositionOffset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_LinePositionOffset_m77D589900D124C6DAD97C42186A63260F877BF52_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LineNo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetLineInfo(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) ; // System.Xml.DtdProcessing System.Xml.XmlReaderSettings::get_DtdProcessing() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Int64 System.Xml.XmlReaderSettings::get_MaxCharactersInDocument() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t XmlReaderSettings_get_MaxCharactersInDocument_mBF86AACB085807A6D3E9936CF287051D34F5261C_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Int64 System.Xml.XmlReaderSettings::get_MaxCharactersFromEntities() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t XmlReaderSettings_get_MaxCharactersFromEntities_mFFA78372DCCFF598DEC760725FA69CAB89A651C3_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Xml.ConformanceLevel System.Xml.XmlReaderSettings::get_ConformanceLevel() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ConformanceLevel_m56DEADA9ADB805F1C190609DEA42E5322AD109EB_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m95CE478B1EC30C779E195BB91D4918BCBB6D6D2A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m46F47AB7CDACB319C89A76F6642BFB512C0B5B33 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.String,System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m8F038C9668062037046A6A7B729C5F0430BF5B74 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream1, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m72837CFE0CDDDA6B9495816CC732D3546681A8D8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___url0, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input1, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitTextReaderInput(System.String,System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitTextReaderInput_mD59812F5A78B70F10C81F8248069530D54289952 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input1, const RuntimeMethod* method) ; // System.Xml.XmlNameTable System.Xml.XmlParserContext::get_NameTable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Text.Encoding System.Text.Encoding::get_Unicode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066 (const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitStringInput(System.String,System.Text.Encoding,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___originalEncoding1, String_t* ___str2, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_BaseURI() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitFragmentReader(System.Xml.XmlNodeType,System.Xml.XmlParserContext,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitFragmentReader_m7217F1675D53546B28937C06DA1B6DBB3D8B83BD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___fragmentType0, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___parserContext1, bool ___allowXmlDeclFragment2, const RuntimeMethod* method) ; // System.Void System.Threading.Tasks.Task::Wait() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_Wait_m33955515E36BF6598FCEDA841C8C75F716DE5A4E (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, const RuntimeMethod* method) ; // TResult System.Threading.Tasks.Task`1::get_Result() inline RuntimeObject* Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26 (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, const RuntimeMethod* method) { return (( RuntimeObject* (*) (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26_gshared)(__this, method); } // System.Text.Encoding System.Xml.XmlParserContext::get_Encoding() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlParserContext_get_Encoding_m70D0D1E92582C7F95EE6E9024771C44129B1AC52_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.Uri,System.String,System.IO.Stream,System.Byte[],System.Int32,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, String_t* ___baseUriStr1, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream2, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes3, int32_t ___byteCount4, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding5, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlParserContext::get_HasDtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ProcessDtdFromParserContext(System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ProcessDtdFromParserContext_mC5462F0B3774A760B0F2D7419A97D289D002DD96 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context0, const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlReaderSettings::GetXmlResolver() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.Xml.XmlResolver,System.Xml.XmlReaderSettings,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mCBF9A4F27E425C86BCFCF7D47C9731EF2DAAA31F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context2, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::UriEqual(System.Uri,System.String,System.String,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_UriEqual_m2246085111A7F67C5A6EC15914D339666930A294 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri10, String_t* ___uri1Str1, String_t* ___uri2Str2, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/LaterInitParam::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LaterInitParam__ctor_m633EE8735226C0AFAB9774FBBA3A4C36A64C47F9 (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishInitStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInitStream_m58313BD0609079DC0F8156990F55749D0E35F440 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishInitTextReader() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInitTextReader_m544C70043AF483368219F53C5439201380E7E867 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_NameTable(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_NameTable_m5FE079006C8F4D4FF3924D1B976C335C17058900 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_ConformanceLevel(System.Xml.ConformanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_CheckCharacters(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_CheckCharacters_m16E3594CB4D8977197AEC7CAE390D688C8E23481 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_LineNumberOffset(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_LineNumberOffset_m2D65499EE921190F3E4AFEF8910A4320F446132A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_LinePositionOffset(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_LinePositionOffset_m9421A24A7DF15D954B1301E8E2B6FD1FB27C084A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_IgnoreWhitespace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreWhitespace_m4BD0B66D712AF9636F562222077CB830E887FF60 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_IgnoreProcessingInstructions(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreProcessingInstructions_m965368E00B6CD619916BE73B03ACD3AAA5BE708C (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_IgnoreComments(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreComments_mA62566F443A53E7FECC98C0D317F47988559DCB4 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_DtdProcessing(System.Xml.DtdProcessing) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_MaxCharactersInDocument(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int64_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_MaxCharactersFromEntities(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int64_t ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_XmlResolver_m44B84031BAC224C07AFD233C3DF9A6383216D883 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl/NodeData::GetNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishPartialValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishPartialValue_m1A6AB6EC08D3B450E847DCBA6AE4E4311DF2F045 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishOtherValueIterator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishOtherValueIterator_mF20DB1AE74812FFDF3A6C6859213BD945E182555 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl/NodeData::get_StringValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_IsEmptyElement_mD85FA732DA497F1A5F2778650D5405F5D67DF527 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_IsDefaultAttribute_mAEDE8A0C6EB15C9087EB963AA29E2E6C3E2AC81C (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, 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.Int32 System.Xml.XmlTextReaderImpl::GetIndexOfAttributeWithoutPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetIndexOfAttributeWithoutPrefix_mE28A59CD28367148597BB65AB4C1EBA22DBE8F9A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::GetIndexOfAttributeWithPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetIndexOfAttributeWithPrefix_mEF35AFBF456D1F9EF89A3E72121686EF60C03C68 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, const RuntimeMethod* method) ; // System.Boolean System.Xml.Ref::Equal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_InAttributeValueIterator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishAttributeValueIterator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishInitUriString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInitUriString_m9D1EAAEBEB54E573AA246ECB98CE152B24D576FA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishInit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInit_mA8DC3168268A98E80115D39DB4BC3EFA2C9116B6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseElementContent_m92E1275AE62507C98DCE8F933E591F7FA3C42E60 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseDocumentContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseDocumentContent_mF4332115464F64242A412C79F3B0D159E7B4517F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OpenUrl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OpenUrl_m0BF6C0850B8AD63E0DEDA911664D51C59A8FD480 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseXmlDeclaration(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseXmlDeclaration_mE57790EE79B349C9AA99472BA1B5DE58604660EA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___isTextDecl0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ResetAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ResetAttributes_m2E88D9765B460D463079DC959DA71B940FBE014C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddNode(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___nodeIndex0, int32_t ___nodeDepth1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::PopElementContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopElementContext_m815F6BA5B634F8A49E91EA0246AAA21310305612 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::set_IsEmptyElement(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NodeData_set_IsEmptyElement_mD9AA39D1F91A00BEDBED1204654917447AF2D57D_inline (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseEntityReference() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseEntityReference_m88F7B5D5FA448C8728068D1440DC9849BD1F0815 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SetupEndEntityNodeInContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupEndEntityNodeInContent_m5DF2EE9E86D586C0DD11D845EEA3BCC0ACFB47BE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValueNode(System.Xml.XmlNodeType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___type0, String_t* ___value1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishIncrementalRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishIncrementalRead_mE29D16A2012D05CC914D1E1E7A5E4C4F70D87FCB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseFragmentAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseFragmentAttribute_m7F13ECEA0620B822BE43B027B9AFA45864D2E10F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseXmlDeclarationFragment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseXmlDeclarationFragment_m78450AE9989B2043AD0068D6200CAD504B12D223 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OnEof() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnEof_m8F5DFF89DE3251F9CEFA219E6A1AB8D268191B36 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowWithoutLineInfo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SkipPartialTextValue() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipPartialTextValue_mB4F56CA02982F525CBE1ABBB78D16F151DEC665A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishReadValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishReadValueChunk_mA0FC504DC95E81D070F51567BEFEAAA7A68FB187 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishReadContentAsBinary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FinishReadElementContentAsBinary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishReadElementContentAsBinary_mD248232D6E06181EB68309925A5A2FA290A190BA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Close_m00A023B8815072F34509D2937F878404C966F63D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___closeInput0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseAttributeValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseAttributeValueChunk_mCE7E6C8D6F5D7D71C50A86E619E1678191ED184F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/EntityType System.Xml.XmlTextReaderImpl::HandleGeneralEntityReference(System.String,System.Boolean,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_HandleGeneralEntityReference_m7341FED921A6B308D70876B0F4C8A46FBB56E446 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, bool ___isInAttributeValue1, bool ___pushFakeEntityIfNullResolver2, int32_t ___entityStartLinePos3, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlReader::HasValueInternal(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_HasValueInternal_mE4B923FA489B97DC6BC46F0746B8DDB3C0ACBF10 (int32_t ___nodeType0, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_CopyTo_m27B76639B9A28127C2B03164D7128939F26C8F90 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___valueOffset0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer1, int32_t ___offset2, int32_t ___length3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, String_t* ___value0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseText(System.Int32&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___startPos0, int32_t* ___endPos1, int32_t* ___outOrChars2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::BlockCopyChars(System.Char[],System.Int32,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___src0, int32_t ___srcOffset1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValue(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValue_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___startPos1, int32_t ___len2, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::get_NamespaceManager() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager__ctor_m879F0538BA1CC8B725BA652BCC9868981D23FCE8 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdValidation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdValidation_mE5F1E5DAF37701D9E2278709B95107872BA06DA7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OnNewLine(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseNumericCharRef(System.Boolean,System.Text.StringBuilder,System.Xml.XmlTextReaderImpl/EntityType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNumericCharRef_m9DAF75CCAB6BE2E4F1E955BC1B252006EFFB832F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___expand0, StringBuilder_t* ___internalSubsetBuilder1, int32_t* ___entityType2, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNamedCharRef_mF403C076AA9507980567EB27D8769ADE153F8421 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___expand0, StringBuilder_t* ___internalSubsetBuilder1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParsePI(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParsePI_m3F73DDC051BD4C3422093EFA6EFB21FBF48A1A08 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___piInDtdStringBuilder0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseCDataOrComment(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___type0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::CopyTo(System.Int32,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_CopyTo_m9D59E5E6EBD3C691A34AC2ADD32FB6C914AB24C2 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___valueOffset0, StringBuilder_t* ___sb1, const RuntimeMethod* method) ; // System.String System.Xml.XmlException::get_ResString() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlException_get_ResString_m977084C1A1F883C2BED73B1F956D980E62649C7A_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SendValidationEvent_m8ED366B9B5A8F444B385EA8725CC08667F3B9D85 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___severity0, String_t* ___code1, String_t* ___arg2, int32_t ___lineNo3, int32_t ___linePos4, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_IsResolverNull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::PushExternalEntity(System.Xml.IDtdEntityInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_PushExternalEntity_m547C80F437D100BC53D09B4E965BB58CE026557D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::PushInternalEntity(System.Xml.IDtdEntityInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushInternalEntity_m1D90F101FA95554B361AD62135C9C796C1809407 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::PopEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopEntity_m3F59397F9382BD7DF60D2249186E342F4EAC99E0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, 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.Void System.Xml.XmlTextReaderImpl::PushExternalEntityOrSubset(System.String,System.String,System.Uri,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushExternalEntityOrSubset_m6512BA1B5A447175E8A0B00D75A62D25F04E8BA0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___publicId0, String_t* ___systemId1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri2, String_t* ___entityName3, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::EatWhitespaces(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::PushParsingState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::RegisterConsumedCharacters(System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_RegisterConsumedCharacters_mC93EC992AB264BC7A08D193CEB0A87806E799D68 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int64_t ___characters0, bool ___inEntityReference1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___e0, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddAttributeNoChecks(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, int32_t ___attrDepth1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String,System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, String_t* ___arg1, int32_t ___lineNumber2, int32_t ___linePosition3, String_t* ___sourceUri4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m9BF115E3E8CAC81B474E36A76805DC4F2E856879 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, int32_t ___lineNumber2, int32_t ___linePosition3, String_t* ___sourceUri4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String[],System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mF8A4BE38F9B4C45F0E94465DB04B241A7418C4A7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, Exception_t* ___innerException2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String[],System.Exception,System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_mAF9987B6D433F91FBD0101527C492BA66AB25F37 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, Exception_t* ___innerException2, int32_t ___lineNumber3, int32_t ___linePosition4, String_t* ___sourceUri5, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SetErrorState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetErrorState_mF7EC149FBA2F8CD34A1FE144754AE2F0A6673374 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlException::get_LineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlException::get_LinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.Exception,System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m9E8E4966F92E92928F2334A4B5A6992A20505AD7 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___message0, Exception_t* ___innerException1, int32_t ___lineNumber2, int32_t ___linePosition3, String_t* ___sourceUri4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_mCD230657B1383DCA2BE352251351F34246E3371B (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, String_t* ___arg1, String_t* ___sourceUri2, const RuntimeMethod* method) ; // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_mC868154C32A2950D756F3E42B40D79DC4B7BBA33 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___data0, int32_t ___length1, int32_t ___invCharIndex2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Int32,System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___res1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args2, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaException::.ctor(System.String,System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* __this, String_t* ___res0, String_t* ___arg1, String_t* ___sourceUri2, int32_t ___lineNumber3, int32_t ___linePosition4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.Xml.Schema.XmlSchemaException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SendValidationEvent_m43EC07FF33D022C9FFCCD094589610257313E1EA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___severity0, XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* ___exception1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::HandleEntityEnd(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___checkEntityNesting0, const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.XmlTextReaderImpl::DetectEncoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlTextReaderImpl_DetectEncoding_mE066883A6515E969053A7DA750215B11D01076A4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SetupEncoding(System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupEncoding_m470DB12F87B04FBFED1621D5931CE18E2CA2E188 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitTextReaderInput(System.String,System.Uri,System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitTextReaderInput_mFA8F8F8AAD41AF30E00B733D8D3998D7C018DC87 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri1, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input2, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_XmlLang() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_XmlLang_m15AAD2E5AA247235638A436E68596B9A89BFE443_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Xml.XmlSpace System.Xml.XmlParserContext::get_XmlSpace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlParserContext_get_XmlSpace_m52BE2428971EFFCBE9922F1B37FEEE9940AF1891_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseDtdFromParserContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseDtdFromParserContext_mCDAFBB67C6485B9F431088A095F8DEC3A3224148 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::GetTempResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlTextReaderImpl_GetTempResolver_mD25BCDBDD60AA6555E5ED5324181C1C6BD046A4F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Inequality_mC32A3382EF16D80BF39005BDD2AB452203D76D6E (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri10, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri21, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OpenUrlDelegate(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OpenUrlDelegate_m4F8AC0E3C72AB0B8B13D02160B212A0A05B6AE73 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___xmlResolver0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowWithoutLineInfo(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.Uri,System.String,System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_mEDB37931B1A8CE459ECFC6ED4DAFA756B5EF55A9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, String_t* ___baseUriStr1, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream2, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding3, const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_Bigendian() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Ucs4Encoding_get_UCS4_Bigendian_m0E97A4F558200F5EBC6145B921BCCC5403331EEA (const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_2143() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Ucs4Encoding_get_UCS4_2143_m0710B16D7E07408001CA72F4A38F716503404D6E (const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_3412() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Ucs4Encoding_get_UCS4_3412_mF9002AF9C8DDCD0536D55369322D6AB0E0DF7CDA (const RuntimeMethod* method) ; // System.Text.Encoding System.Text.Encoding::get_BigEndianUnicode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_BigEndianUnicode_mEBEF9F9E72D779AC741D8A3CB9E05A64F310B40A (const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.Ucs4Encoding::get_UCS4_Littleendian() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Ucs4Encoding_get_UCS4_Littleendian_mE5D14C1D3E3999AB18A07E4325BE96DDE29B356F (const RuntimeMethod* method) ; // System.Void System.Text.UTF8Encoding::.ctor(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_m128F4B4A103E718AAB699E2D64011DB13F486726 (UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE* __this, bool ___encoderShouldEmitUTF8Identifier0, bool ___throwOnInvalidBytes1, const RuntimeMethod* method) ; // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336 (const RuntimeMethod* method) ; // System.Void System.Xml.SafeAsciiDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeAsciiDecoder__ctor_m1C11CABE1F5C280D6CC096EA14C3B34F1EF2C25B (SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23* __this, const RuntimeMethod* method) ; // System.Void System.Xml.UTF16Decoder::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF16Decoder__ctor_m3C3FEF9D965F0159125428E5ADE9EF42359B6664 (UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227* __this, bool ___bigEndian0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::UnDecodeChars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_UnDecodeChars_mE83A86642A1464E06F774A5570CBA45D755D3490 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method) ; // System.Text.Encoding System.Text.Encoding::GetEncoding(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_GetEncoding_mBF5A2BA804B4917644BBEC5A4230D0854236D8FE (String_t* ___name0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m04508E40E7C3D09720FCE5018406D8E4AFE9ABAD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, Exception_t* ___innerException2, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_InEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SwitchEncoding(System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SwitchEncoding_mC73EB114B2F1F732AA6417A7EB694831486B6FAA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___newEncoding0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::OnBufferInvalidated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_OnBufferInvalidated_m23EB9F4229B6FB92ED6C586B75EFE146D979A7D2 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::BlockCopy(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_BlockCopy_mA73F788AFF2A8BA4D73F707BBB88A23C21D70854 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___src0, int32_t ___srcOffset1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::GetChars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetChars_m0551EFA549AFF2773F1422C35BFD60576D58E1E6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___maxCharsCount0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InvalidCharRecovery(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InvalidCharRecovery_m7B340492710F3E4221E1D82062C2512EA2497466 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___bytesCount0, int32_t* ___charsCount1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___res1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::PopParsingState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopParsingState_m6F5CF788CF5233E312DFB006D075BE7D37374D71 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, bool ___closeInput0, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl/NodeData::get_None() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* NodeData_get_None_m09D5476D20F18D3F782AD016AA4C9B7FB91EB495 (const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlConvert::StrEqual(System.Char[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___strPos11, int32_t ___strLen12, String_t* ___str23, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsNameSingleChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsNameSingleChar_mA5C27AEE5BABB098031EA8BE197F9E2E63F0478A (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetNamedNode(System.Xml.XmlNodeType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___type0, String_t* ___localName1, const RuntimeMethod* method) ; // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SwitchEncodingToUTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SwitchEncodingToUTF8_m0D0BF3FCAF9BAC54D7631A62F6CAE59F58F55F38 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___expectedToken10, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseName_m91011791BCE5AF6659C6F7710B79FC64A08D2C39 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___expectedToken10, String_t* ___expectedToken21, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetLineInfo2(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetLineInfo2_mD0AD7BC1A4A18A10953788BC8FBE0B1A02CE26D5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) ; // System.Text.Encoding System.Xml.XmlTextReaderImpl::CheckEncoding(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlTextReaderImpl_CheckEncoding_m7D6146C702DCAB1A529AF7048F9F3CB4A9357DDB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___newEncodingName0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, int32_t ___lineNo1, int32_t ___linePos2, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParsePI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParsePI_m6E8400067F34CBC2348BEFF511D4A08C2D0028D9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseComment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseComment_m8C13A96E0EA7CE2D682C6E9560504BD5093A27A4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___expectedToken1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseCData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseCData_m9F7DDEB84A22C55F46A07F40FDFB0D4EACB97C7D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseDoctypeDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseDoctypeDecl_mBDE8F7BD4F76D04F8D6C6E042C3CE212E4E76C07 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::ParseUnexpectedToken(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ParseUnexpectedToken_m5D57668EDBBF58EA0914EEFE32EDC62F2DCF321C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_m3F9B9CE4DB4B31F87C9F8F9BBB145F68191417E3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___expectedToken11, String_t* ___expectedToken22, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseElement_mC58FBB56F6D72E270C7CC455B69B70A861B169A9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/EntityType System.Xml.XmlTextReaderImpl::HandleEntityReference(System.Boolean,System.Xml.XmlTextReaderImpl/EntityExpandType,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_HandleEntityReference_mCDF9E4056C8508F64B66ABE7063D04D48DA64CA5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___isInAttributeValue0, int32_t ___expandType1, int32_t* ___charRefEndPos2, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseText_mA9F988A11AF15A5DB7084BC5390EFC570E43497B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseRootLevelWhitespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseRootLevelWhitespace_m257220A2F345BCA0D16CBFB1C2D4D276CBACB5DB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseEndElement_mF854379A4EABFF551AF08D8524F49E10B5FA9D7C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowUnclosedElements() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___res1, String_t* ___arg2, const RuntimeMethod* method) ; // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556 (Il2CppChar ___invChar0, Il2CppChar ___nextChar1, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseQName(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___colonPos0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetNamedNode(System.Xml.XmlNodeType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___type0, String_t* ___localName1, String_t* ___prefix2, String_t* ___nameWPrefix3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseAttributes_mFBFB888D130B8F6F3131EF3BBD0E4036BF795ED8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::AddDefaultAttributesAndNormalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AddDefaultAttributesAndNormalize_m9D138E0186D03B44739A980AF7AB82F24BB7C3A6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ElementNamespaceLookup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ElementNamespaceLookup_m469B3650864A3CC8C828C6DCC12C4435D2428072 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::TrimSpacesInValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_TrimSpacesInValue_m8B3A9D1567033FA59E05CAC4E7C0BCF7126790B1 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Collections.Generic.IComparer`1 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::get_Instance() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_mF0B0C0F3D7173DBD9A59C94B5364AAF425F1D599_inline (const RuntimeMethod* method) ; // System.Void System.Array::Sort(T[],System.Collections.Generic.IComparer`1) inline void Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { (( void (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0_gshared)(___array0, ___comparer1, method); } // System.Boolean System.Xml.XmlTextReaderImpl::AddDefaultAttributeDtd(System.Xml.IDtdDefaultAttributeInfo,System.Boolean,System.Xml.XmlTextReaderImpl/NodeData[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_AddDefaultAttributeDtd_mF22FAABF13D4076D5A95FDCBD423732FFEEF434A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___defAttrInfo0, bool ___definedInDtd1, NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___nameSortedNodeData2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::AttributeNamespaceLookup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AttributeNamespaceLookup_m35B1E6A2EB56452DB5BF4A319B8CC44D31184F3B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowTagMismatch(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowTagMismatch_mFF98A6F4F3A7D2C10068AFE4FEECC4CC17C0B5B5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___startTag0, const RuntimeMethod* method) ; // System.Void System.Xml.LineInfo::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0 (LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowExpectingWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddAttribute(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddAttribute_m433FDF6420611ED2F3259758656559AC3B9B7FDA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___endNamePos0, int32_t ___colonPos1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseAttributeValueSlow(System.Int32,System.Char,System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseAttributeValueSlow_mB3F79EF3FC4263EE0519A661137DD3AA5E8B9B7F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___curPos0, Il2CppChar ___quoteChar1, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OnDefaultNamespaceDecl(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnDefaultNamespaceDecl_m581C1C3BE2502F2CA915188A04CFD5126FF0EAD4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OnNamespaceDecl(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnNamespaceDecl_mB01BF6581EA46964237342B9942656CD4E06EE3F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::OnXmlReservedAttribute(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnXmlReservedAttribute_m8A9D2126DA01CF2E3E3E9D99DC5A2D0D36707D25 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::AttributeDuplCheck() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AttributeDuplCheck_m647C40056686C2C01D4BF4A9E356ADDB98C9B60D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::LookupNamespace(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_LookupNamespace_mE589C9F86465B7D1B74C56E1A18F9FC0169AED1F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___node0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, int32_t ___lineNo2, int32_t ___linePos3, const RuntimeMethod* method) ; // System.Void System.Array::Sort(T[],System.Int32,System.Int32) inline void Array_Sort_TisNodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_m89C5DC5A1ACC546949B0964C6AB1CE054488C03B (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { (( void (*) (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*, int32_t, int32_t, const RuntimeMethod*))Array_Sort_TisRuntimeObject_m0F03C2B2D8AD873C5CA0080671957FD314259ED9_gshared)(___array0, ___index1, ___length2, method); } // System.Void System.Xml.XmlTextReaderImpl::PushXmlContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushXmlContext_m32D32A6DD05D7274AB2762228D3DFA63083F0A9C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::AddNamespace(System.String,System.String,System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AddNamespace_m386AA71482212EB7FAEED6FCD330173150E87AFB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___prefix0, String_t* ___uri1, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr2, const RuntimeMethod* method) ; // System.String System.Xml.XmlConvert::TrimString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_TrimString_m10347633D50C56FCE0BFC58077D71AEBD88F9509 (String_t* ___value0, const RuntimeMethod* method) ; // System.String System.Text.StringBuilder::ToString(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_m8A0AC56824DF98812AFBCD745AC6C911873CA8C0 (StringBuilder_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::AddAttributeChunkToList(System.Xml.XmlTextReaderImpl/NodeData,System.Xml.XmlTextReaderImpl/NodeData,System.Xml.XmlTextReaderImpl/NodeData&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___chunk1, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** ___lastChunk2, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::ParseEntityName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ParseEntityName_m3E547DE2000F6AB699FF1052E470BDBEFAB11D11 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.LineInfo::Set(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E (LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowInvalidChar(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___data0, int32_t ___length1, int32_t ___invCharPos2, const RuntimeMethod* method) ; // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::GetTextNodeType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetTextNodeType_mD21D8EAFAE32988277E39963DC7A0F978FDE9062 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___orChars0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValueNode(System.Xml.XmlNodeType,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValueNode_m50F48B9511DD8F6BDB6D49CFB0B3BD799D6AD0F1 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___type0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars1, int32_t ___startPos2, int32_t ___len3, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ShiftBuffer(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___sourcePos0, int32_t ___destPos1, int32_t ___count2, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseCharRefInline(System.Int32,System.Int32&,System.Xml.XmlTextReaderImpl/EntityType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseCharRefInline_m36277AF9F85A6323D8061187EAA94862923DB1D9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___startPos0, int32_t* ___charCount1, int32_t* ___entityType2, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ZeroEndingStream(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ZeroEndingStream_m24AA1FACA8FA96D3A362C20BF6A8D49A0A9DC1C4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, 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.Xml.XmlTextReaderImpl::MoveToNextContentNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_MoveToNextContentNode_m169F81C680109280A2F1E6DBC5D543A94315D772 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___moveIfOnContentNode0, const RuntimeMethod* method) ; // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::GetWhitespaceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetWhitespaceType_m742B2D50EDE39B9E1D98E0E6EA61A87C459EF2C7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlQualifiedName::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m2DD62019A76524587CC7204E1AB903CDAADA6545 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___name0, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::.ctor(System.Xml.XmlQualifiedName,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity__ctor_m7444C0D862E0CC6A87EE2B39B4D058F657AA299C (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname0, bool ___isParameter1, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_Text(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Text_m62FCB261049A0B400D7C27470AFC73EA227861AF (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___value0, const RuntimeMethod* method) ; // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParsePIValue(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParsePIValue_mBFEE75456754EE92FB4FECAF6995FA346A725CE1 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___outStartPos0, int32_t* ___outEndPos1, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ParseCDataOrComment(System.Xml.XmlNodeType,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___type0, int32_t* ___outStartPos1, int32_t* ___outEndPos2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ParseDtd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseDtd_m77D579350487EB066043A62BD0DDB07C7EDC3671 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SkipDtd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipDtd_m555E2C31136B86B1446C265590839C748B74583B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Xml.IDtdParser System.Xml.DtdParser::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B (const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::.ctor(System.Xml.XmlTextReaderImpl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___reader0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SkipPublicOrSystemIdLiteral() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipPublicOrSystemIdLiteral_m8F049682515C5D01A4FB7F3122E3EF0C866A37F5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SkipUntil(System.Char,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipUntil_mDFEE1D762C7074F7FADF2504FC52D59F1B4D716E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Il2CppChar ___stopChar0, bool ___recognizeLiterals1, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseNumericCharRefInline(System.Int32,System.Boolean,System.Text.StringBuilder,System.Int32&,System.Xml.XmlTextReaderImpl/EntityType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___startPos0, bool ___expand1, StringBuilder_t* ___internalSubsetBuilder2, int32_t* ___charCount3, int32_t* ___entityType4, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseNamedCharRefInline(System.Int32,System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNamedCharRefInline_m235172C65E8E87FB7134E46890A5DB080DF4BA0A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___startPos0, bool ___expand1, StringBuilder_t* ___internalSubsetBuilder2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlCharType::SplitSurrogateChar(System.Int32,System.Char&,System.Char&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharType_SplitSurrogateChar_m8D1F247D73F0298B1E45C124BE6FA2A797ABAE56 (int32_t ___combinedChar0, Il2CppChar* ___lowChar1, Il2CppChar* ___highChar2, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::ParseQName(System.Boolean,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseQName_m4230939DD8FF8273EE6963012476F3385B182E97 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___isQName0, int32_t ___startOffset1, int32_t* ___colonPos2, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::ReadDataInName(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ReadDataInName_m1DAF9E903C23DBAFEB9738F7FFEB028E2340CB0E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___pos0, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AllocNode(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AllocNode_m6E6D664CA0B6D2CB5D93658A07692D86C1758173 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___nodeIndex0, int32_t ___nodeDepth1, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddAttribute_m9EA9D173DBD70BD92F1FE146724BB23DE17A8BE8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___localName0, String_t* ___prefix1, String_t* ___nameWPrefix2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::PopXmlContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopXmlContext_mE8BF33631E261B70541D99D0F2FBFDC5DB9847E6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_Clear_m947A266026A00AB3BC65DC55B7BCE727B3D0004F (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___type0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ReThrow(System.Exception,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ReThrow_m58456B276A63FC28D06E961818452191F19A7502 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___e0, int32_t ___lineNo1, int32_t ___linePos2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::FullAttributeCleanup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FullAttributeCleanup_m3F7C15D39EFF3CF7FF7D5AF2BE1F2D3BAEF566CF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::set_IsDefaultAttribute(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NodeData_set_IsDefaultAttribute_m6CFE78C360F0CAADE7E1398F7527374253267DCD_inline (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, bool ___value0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/XmlContext::.ctor(System.Xml.XmlTextReaderImpl/XmlContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlContext__ctor_m36F921052A4E95CFAF89B426EF20D602C5F16C7D (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* __this, XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* ___previousContext0, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::OpenAndPush(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_OpenAndPush_m605AAB188653B4DA412AD98AB6C547DB280E9DC4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String[],System.Exception,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m7E1498E19EBB6E85EC10AA3F9F5A40CA0C5D3F68 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, Exception_t* ___innerException2, int32_t ___lineNumber3, int32_t ___linePosition4, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::ThrowWithoutLineInfo(System.String,System.String[],System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowWithoutLineInfo_m3F88E00870704C2A8B25E655F6EE70D8A5E572DD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, Exception_t* ___innerException2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.Uri,System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m89A74BC08EA5E6FB283BBA9FFB6B4C769AD7D8A6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream1, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::RegisterEntity(System.Xml.IDtdEntityInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_RegisterEntity_m8ABF06A846B69E6471AB0CBFEF79E543D5C02209 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::UnregisterEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_UnregisterEntity_m616D7ADE3585C0654A1374298FF7F9208C7E35CB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) inline bool Dictionary_2_ContainsKey_m5CEBA3CC956CC2C106666A910118133F1E696D84 (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* __this, RuntimeObject* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m6210F59C2C6D70022557B14383A77B307D8E5E4A (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) inline void Dictionary_2_Add_m6B646FC3E69ADA1E841FA6878E43A4EBEDEE6AB0 (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(TKey) inline bool Dictionary_2_Remove_m37E94DC039C08FA639889E09411C8BC5730643B5 (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* __this, RuntimeObject* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___key0, method); } // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Clear_mA3F9CDD851956A92A6F8BAFAA70A20192BB1FED4 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) ; // System.Void System.Xml.IncrementalReadDummyDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDummyDecoder__ctor_m45F0FCE3E794783ED3EB1C279BE4C655FF8E2EE6 (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::IncrementalRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_IncrementalRead_m856D6F97D4CF43CFE3E229178B1A98F34517D7F3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SetupEndEntityNodeInAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupEndEntityNodeInAttribute_m4ED5A78E4DAC8712A7C8A67774B353100E62DDEF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::ParseUnexpectedToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ParseUnexpectedToken_m8670F7F0B839943AE0C7FD4A43B451A56BB719CE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsNCNameSingleChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsNCNameSingleChar_mAE9940C767975DB6F8EA438AAE5F7DFC7666DB54 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_DocTypeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_PublicId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_SystemId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_InternalSubset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m39D4A09CD4A3351C21D85A89AAE43ECAD0E910F4 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Int32 System.Array::BinarySearch(T[],T,System.Collections.Generic.IComparer`1) inline int32_t Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { return (( int32_t (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0_gshared)(___array0, ___value1, ___comparer2, method); } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddDefaultAttributeInternal(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddDefaultAttributeInternal_mB4779CC497BEAEBEFD9FF1467C9BBE524BE85AAF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___prefix2, String_t* ___value3, int32_t ___lineNo4, int32_t ___linePos5, int32_t ___valueLineNo6, int32_t ___valueLinePos7, bool ___isXmlAttribute8, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::Invoke(System.Xml.IDtdDefaultAttributeInfo,System.Xml.XmlTextReaderImpl) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_inline (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __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.Schema.SchemaDeclBase::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455 (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __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.String System.Xml.Schema.SchemaAttDef::get_DefaultValueExpanded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_get_DefaultValueExpanded_m61569B11E4FBDEED7A35CD5A39675B57CE6DB78F (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.SchemaAttDef::get_LineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.SchemaAttDef::get_LinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.SchemaAttDef::get_ValueLineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLineNumber_m6E3FEFC8B5E9CB9D034125346161BC710E52423E_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.SchemaAttDef::get_ValueLinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLinePosition_m43CB9139B92F934F7AF67D0EFCF1A5BCC0A8DEAB_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaAttDef/Reserve System.Xml.Schema.SchemaAttDef::get_Reserved() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_Reserved_m301C4E6E533BE8C00AFF8C087BCF8575B618D055_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.SchemaDeclBase::get_SchemaType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* SchemaDeclBase_get_SchemaType_m46E8C95101CB925C57BD9CBF64D8A755335345B5_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::get_Datatype() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Schema.SchemaDeclBase::get_DefaultValueTyped() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SchemaDeclBase_get_DefaultValueTyped_m16C165322E494F1BC351D0DF53210CF3A906ECAF_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, 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.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703 (StringBuilder_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___capacity0, const RuntimeMethod* method) ; // System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9 (RuntimeArray* ___src0, int32_t ___srcOffset1, RuntimeArray* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent__ctor_m33278556F018B1C30908D7A77E38B07E0FC27B0C (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; HtmlUtf8RawTextWriter__ctor_mA1F2A26D176CDD4BE7707C2E0226ACEB775735DD(__this, L_0, L_1, NULL); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1; HtmlUtf8RawTextWriterIndent_Init_mD5E84F5EA6732D783A82EFCD41C7438340266ACA(__this, L_2, NULL); return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_WriteDocType_mC262802CFD2186070920B868089269ED4A667779 (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { String_t* L_0 = ___name0; String_t* L_1 = ___pubid1; String_t* L_2 = ___sysid2; String_t* L_3 = ___subset3; HtmlUtf8RawTextWriter_WriteDocType_mDC08A1EE2173D0CC6CC54C45F78B6D54E6DF278C(__this, L_0, L_1, L_2, L_3, NULL); int32_t L_4 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; __this->___endBlockPos_36 = L_4; return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_WriteStartElement_mFD7A3A687DA00D38C3F2A4B021A87B33D82364E7 (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49* L_0 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___elementScope_26; uint32_t L_1 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27; NullCheck(L_0); ByteStack_Push_m47D6E14644B1038EDABCC87FE259AAB9368B8871(L_0, (uint8_t)((int32_t)(uint8_t)L_1), NULL); String_t* L_2 = ___ns2; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (L_3) { goto IL_0074; } } { TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* L_4 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_StaticFields*)il2cpp_codegen_static_fields_for(HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_il2cpp_TypeInfo_var))->___elementPropertySearch_33; String_t* L_5 = ___localName1; NullCheck(L_4); uint8_t L_6; L_6 = TernaryTreeReadOnly_FindCaseInsensitiveString_m790869604E4C0130B54112156A0004519D4BA687(L_4, L_5, NULL); ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27 = L_6; int32_t L_7 = __this->___endBlockPos_36; int32_t L_8 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; if ((!(((uint32_t)L_7) == ((uint32_t)L_8)))) { goto IL_004a; } } { uint32_t L_9 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27; if (!((int32_t)((int32_t)L_9&((int32_t)64)))) { goto IL_004a; } } { HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA(__this, NULL); } IL_004a: { int32_t L_10 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_add(L_10, 1)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufBytes_4; int32_t L_12 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; V_0 = L_12; int32_t L_13 = V_0; ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_13, 1)); int32_t L_14 = V_0; NullCheck(L_11); (L_11)->SetAt(static_cast(L_14), (uint8_t)((int32_t)60)); goto IL_00e4; } IL_0074: { ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27 = ((int32_t)192); int32_t L_15 = __this->___endBlockPos_36; int32_t L_16 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; if ((!(((uint32_t)L_15) == ((uint32_t)L_16)))) { goto IL_0093; } } { HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA(__this, NULL); } IL_0093: { int32_t L_17 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_add(L_17, 1)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufBytes_4; int32_t L_19 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; V_0 = L_19; int32_t L_20 = V_0; ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_20, 1)); int32_t L_21 = V_0; NullCheck(L_18); (L_18)->SetAt(static_cast(L_21), (uint8_t)((int32_t)60)); String_t* L_22 = ___prefix0; NullCheck(L_22); int32_t L_23; L_23 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_22, NULL); if (!L_23) { goto IL_00e4; } } { String_t* L_24 = ___prefix0; XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_24, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufBytes_4; int32_t L_26 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; V_0 = L_26; int32_t L_27 = V_0; ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_27, 1)); int32_t L_28 = V_0; NullCheck(L_25); (L_25)->SetAt(static_cast(L_28), (uint8_t)((int32_t)58)); } IL_00e4: { String_t* L_29 = ___localName1; XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_29, NULL); int32_t L_30 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___attrEndPos_12 = L_30; return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_StartElementContent_m75A2C873DB4C6EC3323039B542DF9E42ACE2B51C (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufBytes_4; int32_t L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; V_0 = L_1; int32_t L_2 = V_0; ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1)); int32_t L_3 = V_0; NullCheck(L_0); (L_0)->SetAt(static_cast(L_3), (uint8_t)((int32_t)62)); int32_t L_4 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___contentPos_10 = L_4; uint32_t L_5 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27; if (!((int32_t)((int32_t)L_5&((int32_t)32)))) { goto IL_004a; } } { HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA(__this, NULL); HtmlUtf8RawTextWriter_WriteMetaElement_m7944FF591B4CF1665D569E37D4450FCC0E78878C(__this, NULL); int32_t L_6 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; __this->___endBlockPos_36 = L_6; return; } IL_004a: { uint32_t L_7 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27; if (!((int32_t)((int32_t)L_7&((int32_t)64)))) { goto IL_0061; } } { int32_t L_8 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; __this->___endBlockPos_36 = L_8; } IL_0061: { return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_WriteEndElement_m536FACB0366C29438B20E4476864F24B26B73BBF (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { int32_t G_B4_0 = 0; int32_t G_B1_0 = 0; int32_t G_B2_0 = 0; int32_t G_B3_0 = 0; { int32_t L_0 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_subtract(L_0, 1)); uint32_t L_1 = ((HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)__this)->___currentElementProperties_27; int32_t L_2 = ((!(((uint32_t)((int32_t)((int32_t)L_1&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0); G_B1_0 = L_2; if (!L_2) { G_B4_0 = L_2; goto IL_003f; } } { int32_t L_3 = __this->___endBlockPos_36; int32_t L_4 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; G_B2_0 = G_B1_0; if ((!(((uint32_t)L_3) == ((uint32_t)L_4)))) { G_B4_0 = G_B1_0; goto IL_003f; } } { int32_t L_5 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___contentPos_10; int32_t L_6 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; G_B3_0 = G_B2_0; if ((((int32_t)L_5) == ((int32_t)L_6))) { G_B4_0 = G_B2_0; goto IL_003f; } } { HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA(__this, NULL); G_B4_0 = G_B3_0; } IL_003f: { String_t* L_7 = ___prefix0; String_t* L_8 = ___localName1; String_t* L_9 = ___ns2; HtmlUtf8RawTextWriter_WriteEndElement_m5421A2A570B651EEA581B84FE4C023EEC931A013(__this, L_7, L_8, L_9, NULL); ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___contentPos_10 = 0; if (!G_B4_0) { goto IL_005d; } } { int32_t L_10 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; __this->___endBlockPos_36 = L_10; } IL_005d: { return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_WriteStartAttribute_mCCDD042BA6FD7932B7A71DAC1958D9D984599AF7 (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { bool L_0 = __this->___newLineOnAttributes_38; if (!L_0) { goto IL_0036; } } { String_t* L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___newLineChars_20; XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_1, NULL); int32_t L_2 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_add(L_2, 1)); HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA(__this, NULL); int32_t L_3 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_subtract(L_3, 1)); } IL_0036: { String_t* L_4 = ___prefix0; String_t* L_5 = ___localName1; String_t* L_6 = ___ns2; HtmlUtf8RawTextWriter_WriteStartAttribute_m71BF2DA3F5CEDF6A310A7D8AB0EF185939EA9842(__this, L_4, L_5, L_6, NULL); return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::FlushBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_FlushBuffer_m4343563242283D4563A8AB996E287B3057BE128E (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, const RuntimeMethod* method) { HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* G_B2_0 = NULL; HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* G_B1_0 = NULL; int32_t G_B3_0 = 0; HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* G_B3_1 = NULL; { int32_t L_0 = __this->___endBlockPos_36; int32_t L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8; G_B1_0 = __this; if ((((int32_t)L_0) == ((int32_t)L_1))) { G_B2_0 = __this; goto IL_0012; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; goto IL_0013; } IL_0012: { G_B3_0 = 1; G_B3_1 = G_B2_0; } IL_0013: { NullCheck(G_B3_1); G_B3_1->___endBlockPos_36 = G_B3_0; XmlUtf8RawTextWriter_FlushBuffer_m380AF5AC857AFEFB88FD4D4A223CE2F61D0B624A(__this, NULL); return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::Init(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_Init_mD5E84F5EA6732D783A82EFCD41C7438340266ACA (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) { { __this->___indentLevel_35 = 0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings0; NullCheck(L_0); String_t* L_1; L_1 = XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline(L_0, NULL); __this->___indentChars_37 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___indentChars_37), (void*)L_1); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings0; NullCheck(L_2); bool L_3; L_3 = XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline(L_2, NULL); __this->___newLineOnAttributes_38 = L_3; return; } } // System.Void System.Xml.HtmlUtf8RawTextWriterIndent::WriteIndent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent_WriteIndent_mD6890BA8F1DF624D29CF8BCACBA94EA4F25FE2FA (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___newLineChars_20; XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_0, NULL); int32_t L_1 = __this->___indentLevel_35; V_0 = L_1; goto IL_0025; } IL_0015: { String_t* L_2 = __this->___indentChars_37; XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_2, NULL); int32_t L_3 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1)); } IL_0025: { int32_t L_4 = V_0; if ((((int32_t)L_4) > ((int32_t)0))) { goto IL_0015; } } { 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 OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Multicast(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); typedef void (*FunctionPointerType) (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method); for (il2cpp_array_size_t i = 0; i < length; i++) { OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___writer0, reinterpret_cast(currentDelegate->___method_3)); } } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Open(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___writer0, method); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Closed(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___writer0, method); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenStaticInvoker(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { InvokerActionInvoker1< XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* >::Invoke(__this->___method_ptr_0, method, NULL, ___writer0); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_ClosedStaticInvoker(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___writer0); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenVirtual(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___writer0); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenInterface(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___writer0); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenGenericVirtual(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { GenericVirtualActionInvoker0::Invoke(method, ___writer0); } void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenGenericInterface(OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { GenericInterfaceActionInvoker0::Invoke(method, ___writer0); } // System.Void System.Xml.OnRemoveWriter::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnRemoveWriter__ctor_m9FB0F59F53C9354EF8F9445E8711B51312F5F2D9 (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __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)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Open; else __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_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)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1)) __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Open; } } else { __this->___invoke_impl_1 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Closed; } } __this->___extra_arg_5 = (intptr_t)&OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_Multicast; } // System.Void System.Xml.OnRemoveWriter::Invoke(System.Xml.XmlRawWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257 (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method); ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___writer0, reinterpret_cast(__this->___method_3)); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.IncrementalReadDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDecoder__ctor_mE733A01D272115149EA92BC8D2CA04B1E6087FB7 (IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* __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.Boolean System.Xml.IncrementalReadDummyDecoder::get_IsFull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IncrementalReadDummyDecoder_get_IsFull_mC29A581FD93E84059A53DCF15CDB26837317F39B (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.Xml.IncrementalReadDummyDecoder::Decode(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IncrementalReadDummyDecoder_Decode_m7ED5F7AB4C32FEA75B335377FC5CAACCB4756D41 (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___startPos1, int32_t ___len2, const RuntimeMethod* method) { { int32_t L_0 = ___len2; return L_0; } } // System.Void System.Xml.IncrementalReadDummyDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDummyDecoder__ctor_m45F0FCE3E794783ED3EB1C279BE4C655FF8E2EE6 (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, const RuntimeMethod* method) { { IncrementalReadDecoder__ctor_mE733A01D272115149EA92BC8D2CA04B1E6087FB7(__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.Void System.Xml.QueryOutputWriter::.ctor(System.Xml.XmlRawWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter__ctor_m719E09C06E20C2EC55BCEF055A8CB865EEFAAC25 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m9B62B0AF42B8D720A217CCF7D03D8242D1D7FA4B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mD4F20774F164452D05D56D2A3101DC82B30F762D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mC605D2D31727D8396798863F0D14AB7F45E74EA7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mD2119FFD872E74A6F4997BB265A66364DB3471A1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mC4F2F141ED84510A73B235D519BCFD8FE1FF5BD5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m568CB3E67C19B9174F2AD57A64A72D95F93191A1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C V_0; memset((&V_0), 0, sizeof(V_0)); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL; { XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = ___writer0; __this->___wrapped_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___wrapped_3), (void*)L_0); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; NullCheck(L_1); String_t* L_2; L_2 = XmlWriterSettings_get_DocTypeSystem_mA52DF45898F37EFBFAFFB19C5FF0E85DB1D59AB1_inline(L_1, NULL); __this->___systemId_12 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_12), (void*)L_2); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_3 = ___settings1; NullCheck(L_3); String_t* L_4; L_4 = XmlWriterSettings_get_DocTypePublic_mCD450846EDA3E29E0627CBFF9A694BC276C9D847_inline(L_3, NULL); __this->___publicId_13 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_13), (void*)L_4); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_5 = ___settings1; NullCheck(L_5); int32_t L_6; L_6 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(L_5, NULL); if (L_6) { goto IL_00d9; } } { String_t* L_7 = __this->___systemId_12; if (!L_7) { goto IL_0046; } } { __this->___outputDocType_8 = (bool)1; __this->___checkWellFormedDoc_9 = (bool)1; } IL_0046: { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_8 = ___settings1; NullCheck(L_8); bool L_9; L_9 = XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline(L_8, NULL); if (!L_9) { goto IL_005e; } } { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_10 = ___settings1; NullCheck(L_10); int32_t L_11; L_11 = XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline(L_10, NULL); if ((!(((uint32_t)L_11) == ((uint32_t)1)))) { goto IL_005e; } } { __this->___checkWellFormedDoc_9 = (bool)1; } IL_005e: { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_12 = ___settings1; NullCheck(L_12); List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_13; L_13 = XmlWriterSettings_get_CDataSectionElements_m41A55F92925DE680C957E3E18CF5414EB8D6DF58_inline(L_12, NULL); NullCheck(L_13); int32_t L_14; L_14 = List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_inline(L_13, List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_RuntimeMethod_var); if ((((int32_t)L_14) <= ((int32_t)0))) { goto IL_00f9; } } { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_15 = (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C*)il2cpp_codegen_object_new(BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var); NullCheck(L_15); BitStack__ctor_m9BADB5496087F772604E9F62D3B18C07630EA45A(L_15, NULL); __this->___bitsCData_6 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___bitsCData_6), (void*)L_15); Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_16 = (Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426*)il2cpp_codegen_object_new(Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426_il2cpp_TypeInfo_var); NullCheck(L_16); Dictionary_2__ctor_m9B62B0AF42B8D720A217CCF7D03D8242D1D7FA4B(L_16, Dictionary_2__ctor_m9B62B0AF42B8D720A217CCF7D03D8242D1D7FA4B_RuntimeMethod_var); __this->___lookupCDataElems_5 = L_16; Il2CppCodeGenWriteBarrier((void**)(&__this->___lookupCDataElems_5), (void*)L_16); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_17 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_17); XmlQualifiedName__ctor_mD1D3B6997D1B544D421B704520AD12E4C120D634(L_17, NULL); __this->___qnameCData_7 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___qnameCData_7), (void*)L_17); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_18 = ___settings1; NullCheck(L_18); List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_19; L_19 = XmlWriterSettings_get_CDataSectionElements_m41A55F92925DE680C957E3E18CF5414EB8D6DF58_inline(L_18, NULL); NullCheck(L_19); Enumerator_t071E9B3BA83C03845AE1893845CAC5103920A91C L_20; L_20 = List_1_GetEnumerator_m568CB3E67C19B9174F2AD57A64A72D95F93191A1(L_19, List_1_GetEnumerator_m568CB3E67C19B9174F2AD57A64A72D95F93191A1_RuntimeMethod_var); V_0 = L_20; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00be: {// begin finally (depth: 1) Enumerator_Dispose_mC605D2D31727D8396798863F0D14AB7F45E74EA7((&V_0), Enumerator_Dispose_mC605D2D31727D8396798863F0D14AB7F45E74EA7_RuntimeMethod_var); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_00b3_1; } IL_009e_1: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21; L_21 = Enumerator_get_Current_mC4F2F141ED84510A73B235D519BCFD8FE1FF5BD5_inline((&V_0), Enumerator_get_Current_mC4F2F141ED84510A73B235D519BCFD8FE1FF5BD5_RuntimeMethod_var); V_1 = L_21; Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_22 = __this->___lookupCDataElems_5; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_23 = V_1; NullCheck(L_22); Dictionary_2_set_Item_mD4F20774F164452D05D56D2A3101DC82B30F762D(L_22, L_23, 0, Dictionary_2_set_Item_mD4F20774F164452D05D56D2A3101DC82B30F762D_RuntimeMethod_var); } IL_00b3_1: { bool L_24; L_24 = Enumerator_MoveNext_mD2119FFD872E74A6F4997BB265A66364DB3471A1((&V_0), Enumerator_MoveNext_mD2119FFD872E74A6F4997BB265A66364DB3471A1_RuntimeMethod_var); if (L_24) { goto IL_009e_1; } } { goto IL_00cc; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00cc: { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_25 = __this->___bitsCData_6; NullCheck(L_25); BitStack_PushBit_m1781C0D736A215362CD21AD07CAF39EE2909F718(L_25, (bool)0, NULL); return; } IL_00d9: { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_26 = ___settings1; NullCheck(L_26); int32_t L_27; L_27 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(L_26, NULL); if ((!(((uint32_t)L_27) == ((uint32_t)1)))) { goto IL_00f9; } } { String_t* L_28 = __this->___systemId_12; if (L_28) { goto IL_00f2; } } { String_t* L_29 = __this->___publicId_13; if (!L_29) { goto IL_00f9; } } IL_00f2: { __this->___outputDocType_8 = (bool)1; } IL_00f9: { return; } } // System.Void System.Xml.QueryOutputWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_set_NamespaceResolver_mD3CCDD99088387B259DD91A850AF9EE383ECF230 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; ((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)__this)->___resolver_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)__this)->___resolver_2), (void*)L_0); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_1 = __this->___wrapped_3; RuntimeObject* L_2 = ___value0; NullCheck(L_1); VirtualActionInvoker1< RuntimeObject* >::Invoke(35 /* System.Void System.Xml.XmlRawWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) */, L_1, L_2); return; } } // System.Void System.Xml.QueryOutputWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteXmlDeclaration_mAF2C006C4EDE8A461440FB370722F3E34EE33114 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, int32_t ___standalone0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; int32_t L_1 = ___standalone0; NullCheck(L_0); VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteXmlDeclaration_mD1E17174808C6BBAA74DE642CD016C45988B9B5A (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___xmldecl0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(37 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteDocType_mE1D60E52D365C5B05922013EC3FAE8D130F7BFA2 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { String_t* L_0 = __this->___publicId_13; if (L_0) { goto IL_0020; } } { String_t* L_1 = __this->___systemId_12; if (L_1) { goto IL_0020; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_2 = __this->___wrapped_3; String_t* L_3 = ___name0; String_t* L_4 = ___pubid1; String_t* L_5 = ___sysid2; String_t* L_6 = ___subset3; NullCheck(L_2); VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, L_2, L_3, L_4, L_5, L_6); } IL_0020: { return; } } // System.Void System.Xml.QueryOutputWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteStartElement_mAE7A423ED1299999A971702E5C711D1DB7FB9FED (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m400FFF2A30F886D75808F2253ED971B963BFD133_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* G_B8_0 = NULL; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* G_B7_0 = NULL; String_t* G_B9_0 = NULL; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* G_B9_1 = NULL; { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); bool L_0 = __this->___checkWellFormedDoc_9; if (!L_0) { goto IL_0043; } } { int32_t L_1 = __this->___depth_14; if (L_1) { goto IL_002e; } } { bool L_2 = __this->___hasDocElem_10; if (!L_2) { goto IL_002e; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_4); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D3A6937948B511C58F902D4F718201A18C1E9ED)), L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryOutputWriter_WriteStartElement_mAE7A423ED1299999A971702E5C711D1DB7FB9FED_RuntimeMethod_var))); } IL_002e: { int32_t L_5 = __this->___depth_14; __this->___depth_14 = ((int32_t)il2cpp_codegen_add(L_5, 1)); __this->___hasDocElem_10 = (bool)1; } IL_0043: { bool L_6 = __this->___outputDocType_8; if (!L_6) { goto IL_0081; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_7 = __this->___wrapped_3; String_t* L_8 = ___prefix0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); G_B7_0 = L_7; if (L_9) { G_B8_0 = L_7; goto IL_005c; } } { String_t* L_10 = ___localName1; G_B9_0 = L_10; G_B9_1 = G_B7_0; goto IL_0068; } IL_005c: { String_t* L_11 = ___prefix0; String_t* L_12 = ___localName1; String_t* L_13; L_13 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_11, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_12, NULL); G_B9_0 = L_13; G_B9_1 = G_B8_0; } IL_0068: { String_t* L_14 = __this->___publicId_13; String_t* L_15 = __this->___systemId_12; NullCheck(G_B9_1); VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, G_B9_1, G_B9_0, L_14, L_15, (String_t*)NULL); __this->___outputDocType_8 = (bool)0; } IL_0081: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_16 = __this->___wrapped_3; String_t* L_17 = ___prefix0; String_t* L_18 = ___localName1; String_t* L_19 = ___ns2; NullCheck(L_16); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_16, L_17, L_18, L_19); Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_20 = __this->___lookupCDataElems_5; if (!L_20) { goto IL_00c0; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21 = __this->___qnameCData_7; String_t* L_22 = ___localName1; String_t* L_23 = ___ns2; NullCheck(L_21); XmlQualifiedName_Init_m2F37BA4297673844DC409B1C7E03849BC95EAAFB(L_21, L_22, L_23, NULL); BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_24 = __this->___bitsCData_6; Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_25 = __this->___lookupCDataElems_5; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_26 = __this->___qnameCData_7; NullCheck(L_25); bool L_27; L_27 = Dictionary_2_ContainsKey_m400FFF2A30F886D75808F2253ED971B963BFD133(L_25, L_26, Dictionary_2_ContainsKey_m400FFF2A30F886D75808F2253ED971B963BFD133_RuntimeMethod_var); NullCheck(L_24); BitStack_PushBit_m1781C0D736A215362CD21AD07CAF39EE2909F718(L_24, L_27, NULL); } IL_00c0: { return; } } // System.Void System.Xml.QueryOutputWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteEndElement_m67F2309AF7BC781CB1CCD8D2DC46E9ECD39A4E17 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(40 /* System.Void System.Xml.XmlRawWriter::WriteEndElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); bool L_4 = __this->___checkWellFormedDoc_9; if (!L_4) { goto IL_002a; } } { int32_t L_5 = __this->___depth_14; __this->___depth_14 = ((int32_t)il2cpp_codegen_subtract(L_5, 1)); } IL_002a: { Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_6 = __this->___lookupCDataElems_5; if (!L_6) { goto IL_003e; } } { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_7 = __this->___bitsCData_6; NullCheck(L_7); bool L_8; L_8 = BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3(L_7, NULL); } IL_003e: { return; } } // System.Void System.Xml.QueryOutputWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteFullEndElement_mCFC2AD96A8250C858FA0578DD2BB23041393156F (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(41 /* System.Void System.Xml.XmlRawWriter::WriteFullEndElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); bool L_4 = __this->___checkWellFormedDoc_9; if (!L_4) { goto IL_002a; } } { int32_t L_5 = __this->___depth_14; __this->___depth_14 = ((int32_t)il2cpp_codegen_subtract(L_5, 1)); } IL_002a: { Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_6 = __this->___lookupCDataElems_5; if (!L_6) { goto IL_003e; } } { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_7 = __this->___bitsCData_6; NullCheck(L_7); bool L_8; L_8 = BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3(L_7, NULL); } IL_003e: { return; } } // System.Void System.Xml.QueryOutputWriter::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_StartElementContent_mB0540034D532842F38E1FB5342C6CFF9AAA2CBBE (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(38 /* System.Void System.Xml.XmlRawWriter::StartElementContent() */, L_0); return; } } // System.Void System.Xml.QueryOutputWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteStartAttribute_mF575F26B63688EC4098D938381A8CDE0E93F6DD7 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { __this->___inAttr_11 = (bool)1; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.QueryOutputWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteEndAttribute_mA1CA38A1916920606191D3EF746E8AA7A45721CE (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { __this->___inAttr_11 = (bool)0; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_0); return; } } // System.Void System.Xml.QueryOutputWriter::WriteNamespaceDeclaration(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteNamespaceDeclaration_m0100319F7928D1494B8B59897A48DA701A998DC8 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___ns1; NullCheck(L_0); VirtualActionInvoker2< String_t*, String_t* >::Invoke(42 /* System.Void System.Xml.XmlRawWriter::WriteNamespaceDeclaration(System.String,System.String) */, L_0, L_1, L_2); return; } } // System.Boolean System.Xml.QueryOutputWriter::get_SupportsNamespaceDeclarationInChunks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueryOutputWriter_get_SupportsNamespaceDeclarationInChunks_m53D7AA367C74E2CE577B16ED61A7B63A0C3718C5 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlRawWriter::get_SupportsNamespaceDeclarationInChunks() */, L_0); return L_1; } } // System.Void System.Xml.QueryOutputWriter::WriteStartNamespaceDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteStartNamespaceDeclaration_m164443A2DF42930D29A30868E72E4BECB9237FF6 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___prefix0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(44 /* System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteEndNamespaceDeclaration() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteEndNamespaceDeclaration_m2FFA926AFAA67072E880AA1AE97D9DF6C883CC98 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() */, L_0); return; } } // System.Void System.Xml.QueryOutputWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteCData_m6D2534D02095A033899A50C372E8396B4F3AA750 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___text0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___text0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteComment_mA0C0846CBFC12E9A0C894F086B2156C4185ADE61 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___text0, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___text0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteProcessingInstruction_m24B3277E75D6C13905CE4CD548E74F85F143BD5C (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___name0; String_t* L_2 = ___text1; NullCheck(L_0); VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.QueryOutputWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteWhitespace_m8E3478AC2153F8F007A07A97E599617429F5B06D (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___ws0, const RuntimeMethod* method) { { bool L_0 = __this->___inAttr_11; if (L_0) { goto IL_0025; } } { bool L_1 = __this->___inCDataSection_4; if (L_1) { goto IL_0018; } } { bool L_2; L_2 = QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44(__this, NULL); if (!L_2) { goto IL_0025; } } IL_0018: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; String_t* L_4 = ___ws0; NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_3, L_4); return; } IL_0025: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_5 = __this->___wrapped_3; String_t* L_6 = ___ws0; NullCheck(L_5); VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_5, L_6); return; } } // System.Void System.Xml.QueryOutputWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteString_mB61A05D356312B4D7DD60FC6CF1FC5B41F5C745C (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___text0, const RuntimeMethod* method) { { bool L_0 = __this->___inAttr_11; if (L_0) { goto IL_0025; } } { bool L_1 = __this->___inCDataSection_4; if (L_1) { goto IL_0018; } } { bool L_2; L_2 = QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44(__this, NULL); if (!L_2) { goto IL_0025; } } IL_0018: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; String_t* L_4 = ___text0; NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_3, L_4); return; } IL_0025: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_5 = __this->___wrapped_3; String_t* L_6 = ___text0; NullCheck(L_5); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_5, L_6); return; } } // System.Void System.Xml.QueryOutputWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteChars_m44803D79431499375804A29222D6F68181D52462 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { bool L_0 = __this->___inAttr_11; if (L_0) { goto IL_002c; } } { bool L_1 = __this->___inCDataSection_4; if (L_1) { goto IL_0018; } } { bool L_2; L_2 = QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44(__this, NULL); if (!L_2) { goto IL_002c; } } IL_0018: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ___buffer0; int32_t L_5 = ___index1; int32_t L_6 = ___count2; String_t* L_7; L_7 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_4, L_5, L_6, NULL); NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_3, L_7); return; } IL_002c: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_8 = __this->___wrapped_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = ___buffer0; int32_t L_10 = ___index1; int32_t L_11 = ___count2; NullCheck(L_8); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(22 /* System.Void System.Xml.XmlWriter::WriteChars(System.Char[],System.Int32,System.Int32) */, L_8, L_9, L_10, L_11); return; } } // System.Void System.Xml.QueryOutputWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteEntityRef_mEFF0BB46E7B5A9205B89C7D52582E0CB4B7C23BF (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___name0, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___name0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteCharEntity_m00938CB48D38A097A26C3AD6E734902C2E3B03F0 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; Il2CppChar L_1 = ___ch0; NullCheck(L_0); VirtualActionInvoker1< Il2CppChar >::Invoke(18 /* System.Void System.Xml.XmlWriter::WriteCharEntity(System.Char) */, L_0, L_1); return; } } // System.Void System.Xml.QueryOutputWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteSurrogateCharEntity_m241F20F4A62A2F6B2EB193D8FB8E92053EC9904D (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2(__this, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; Il2CppChar L_1 = ___lowChar0; Il2CppChar L_2 = ___highChar1; NullCheck(L_0); VirtualActionInvoker2< Il2CppChar, Il2CppChar >::Invoke(21 /* System.Void System.Xml.XmlWriter::WriteSurrogateCharEntity(System.Char,System.Char) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.QueryOutputWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteRaw_m019F200012A4F29128F98D4590A7184D69EE3E06 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { bool L_0 = __this->___inAttr_11; if (L_0) { goto IL_002c; } } { bool L_1 = __this->___inCDataSection_4; if (L_1) { goto IL_0018; } } { bool L_2; L_2 = QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44(__this, NULL); if (!L_2) { goto IL_002c; } } IL_0018: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ___buffer0; int32_t L_5 = ___index1; int32_t L_6 = ___count2; String_t* L_7; L_7 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_4, L_5, L_6, NULL); NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_3, L_7); return; } IL_002c: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_8 = __this->___wrapped_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = ___buffer0; int32_t L_10 = ___index1; int32_t L_11 = ___count2; NullCheck(L_8); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(23 /* System.Void System.Xml.XmlWriter::WriteRaw(System.Char[],System.Int32,System.Int32) */, L_8, L_9, L_10, L_11); return; } } // System.Void System.Xml.QueryOutputWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_WriteRaw_mD4E480DF7A90B365D7F47B270F50B54E1C1118A7 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, String_t* ___data0, const RuntimeMethod* method) { { bool L_0 = __this->___inAttr_11; if (L_0) { goto IL_0025; } } { bool L_1 = __this->___inCDataSection_4; if (L_1) { goto IL_0018; } } { bool L_2; L_2 = QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44(__this, NULL); if (!L_2) { goto IL_0025; } } IL_0018: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; String_t* L_4 = ___data0; NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_3, L_4); return; } IL_0025: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_5 = __this->___wrapped_3; String_t* L_6 = ___data0; NullCheck(L_5); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_5, L_6); return; } } // System.Void System.Xml.QueryOutputWriter::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_Close_mEFE15AFB05D8F870AE6B22D6B546116638BC4168 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, L_0); bool L_1 = __this->___checkWellFormedDoc_9; if (!L_1) { goto IL_002b; } } { bool L_2 = __this->___hasDocElem_10; if (L_2) { goto IL_002b; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_4); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9413AC7CF6AB7E9B088B38F9FF76860CC990A952)), L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryOutputWriter_Close_mEFE15AFB05D8F870AE6B22D6B546116638BC4168_RuntimeMethod_var))); } IL_002b: { return; } } // System.Void System.Xml.QueryOutputWriter::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_Flush_m7254C9809B7E62438AD22D60C04C4B9177FA3974 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_0); return; } } // System.Boolean System.Xml.QueryOutputWriter::StartCDataSection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueryOutputWriter_StartCDataSection_m99EE7ED6C70003A94BA497D9C1556494F55F9B44 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* L_0 = __this->___lookupCDataElems_5; if (!L_0) { goto IL_001e; } } { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_1 = __this->___bitsCData_6; NullCheck(L_1); bool L_2; L_2 = BitStack_PeekBit_m416F1BB8F64059C924312B2416CBE09747B0E1E4(L_1, NULL); if (!L_2) { goto IL_001e; } } { __this->___inCDataSection_4 = (bool)1; return (bool)1; } IL_001e: { return (bool)0; } } // System.Void System.Xml.QueryOutputWriter::EndCDataSection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter_EndCDataSection_m625029F30E9B1E062A847B0E2ACDAA16B2BEF7F2 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, const RuntimeMethod* method) { { __this->___inCDataSection_4 = (bool)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.ReadContentAsBinaryHelper::Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9 (ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->___state_1; if (!L_0) { goto IL_0064; } } IL_0008: { bool L_1; L_1 = ReadContentAsBinaryHelper_MoveToNextContentNode_m7FB239D47130A8324EA15820546E4D43C1E1FBC6(__this, (bool)1, NULL); if (L_1) { goto IL_0008; } } { int32_t L_2 = __this->___state_1; if ((!(((uint32_t)L_2) == ((uint32_t)2)))) { goto IL_0064; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___reader_0; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_3); if ((((int32_t)L_4) == ((int32_t)((int32_t)15)))) { goto IL_0058; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_0; NullCheck(L_5); int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_5); V_0 = L_6; Il2CppFakeBox L_7(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_0)); String_t* L_8; L_8 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_7), NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_0; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_10 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_10); XmlException__ctor_m9B374E074F3F119E162C8075170EAC3D83B903C3(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50709161A683107F88DF833963D6907320EB2D94)), L_8, ((RuntimeObject*)IsInst((RuntimeObject*)L_9, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)))), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9_RuntimeMethod_var))); } IL_0058: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___reader_0; NullCheck(L_11); bool L_12; L_12 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_11); } IL_0064: { ReadContentAsBinaryHelper_Reset_m17AAB38EA5100EAAA4B35BAE7CFA2A4350A0B357(__this, NULL); return; } } // System.Void System.Xml.ReadContentAsBinaryHelper::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadContentAsBinaryHelper_Reset_m17AAB38EA5100EAAA4B35BAE7CFA2A4350A0B357 (ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* __this, const RuntimeMethod* method) { { __this->___state_1 = 0; __this->___isEnd_3 = (bool)0; __this->___valueOffset_2 = 0; return; } } // System.Boolean System.Xml.ReadContentAsBinaryHelper::MoveToNextContentNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadContentAsBinaryHelper_MoveToNextContentNode_m7FB239D47130A8324EA15820546E4D43C1E1FBC6 (ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* __this, bool ___moveIfOnContentNode0, const RuntimeMethod* method) { int32_t V_0 = 0; IL_0000: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_0; 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, 2))) { case 0: { goto IL_0052; } case 1: { goto IL_0057; } case 2: { goto IL_0057; } case 3: { goto IL_005c; } case 4: { goto IL_0076; } case 5: { goto IL_0078; } case 6: { goto IL_0078; } case 7: { goto IL_0076; } case 8: { goto IL_0076; } case 9: { goto IL_0076; } case 10: { goto IL_0076; } case 11: { goto IL_0057; } case 12: { goto IL_0057; } case 13: { goto IL_0076; } case 14: { goto IL_0078; } } } { goto IL_0076; } IL_0052: { bool L_3 = ___moveIfOnContentNode0; return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_0057: { bool L_4 = ___moveIfOnContentNode0; if (L_4) { goto IL_0078; } } { return (bool)1; } IL_005c: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_0; NullCheck(L_5); bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_5); if (!L_6) { goto IL_0076; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___reader_0; NullCheck(L_7); VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_7); goto IL_0078; } IL_0076: { return (bool)0; } IL_0078: { ___moveIfOnContentNode0 = (bool)0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___reader_0; NullCheck(L_8); bool L_9; L_9 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_8); if (L_9) { goto IL_0000; } } { return (bool)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.TernaryTreeReadOnly::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TernaryTreeReadOnly__ctor_m992650E56855E4FBDB1608D7D226880F302EAD50 (TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___nodeBuffer0, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___nodeBuffer0; __this->___nodeBuffer_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodeBuffer_0), (void*)L_0); return; } } // System.Byte System.Xml.TernaryTreeReadOnly::FindCaseInsensitiveString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t TernaryTreeReadOnly_FindCaseInsensitiveString_m790869604E4C0130B54112156A0004519D4BA687 (TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* __this, String_t* ___stringToFind0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_4 = NULL; int32_t V_5 = 0; { V_0 = 0; V_1 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___nodeBuffer_0; V_4 = L_0; String_t* L_1 = ___stringToFind0; int32_t L_2 = V_0; NullCheck(L_1); Il2CppChar L_3; L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL); V_2 = L_3; int32_t L_4 = V_2; if ((((int32_t)L_4) <= ((int32_t)((int32_t)122)))) { goto IL_001b; } } { return (uint8_t)0; } IL_001b: { int32_t L_5 = V_2; if ((((int32_t)L_5) < ((int32_t)((int32_t)97)))) { goto IL_0025; } } { int32_t L_6 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract(L_6, ((int32_t)32))); } IL_0025: { int32_t L_7 = V_1; V_5 = ((int32_t)il2cpp_codegen_multiply(L_7, 4)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_4; int32_t L_9 = V_5; NullCheck(L_8); int32_t L_10 = L_9; uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); V_3 = L_11; int32_t L_12 = V_2; int32_t L_13 = V_3; if ((((int32_t)L_12) >= ((int32_t)L_13))) { goto IL_0049; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_4; int32_t L_15 = V_5; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_add(L_15, 1)); uint8_t L_17 = (L_14)->GetAt(static_cast(L_16)); if (!L_17) { goto IL_009d; } } { int32_t L_18 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = V_4; int32_t L_20 = V_5; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_add(L_20, 1)); uint8_t L_22 = (L_19)->GetAt(static_cast(L_21)); V_1 = ((int32_t)il2cpp_codegen_add(L_18, (int32_t)L_22)); goto IL_0025; } IL_0049: { int32_t L_23 = V_2; int32_t L_24 = V_3; if ((((int32_t)L_23) <= ((int32_t)L_24))) { goto IL_0062; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = V_4; int32_t L_26 = V_5; NullCheck(L_25); int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 2)); uint8_t L_28 = (L_25)->GetAt(static_cast(L_27)); if (!L_28) { goto IL_009d; } } { int32_t L_29 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = V_4; int32_t L_31 = V_5; NullCheck(L_30); int32_t L_32 = ((int32_t)il2cpp_codegen_add(L_31, 2)); uint8_t L_33 = (L_30)->GetAt(static_cast(L_32)); V_1 = ((int32_t)il2cpp_codegen_add(L_29, (int32_t)L_33)); goto IL_0025; } IL_0062: { int32_t L_34 = V_2; if (L_34) { goto IL_006d; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = V_4; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = ((int32_t)il2cpp_codegen_add(L_36, 3)); uint8_t L_38 = (L_35)->GetAt(static_cast(L_37)); return L_38; } IL_006d: { int32_t L_39 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_39, 1)); int32_t L_40 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_40, 1)); int32_t L_41 = V_0; String_t* L_42 = ___stringToFind0; NullCheck(L_42); int32_t L_43; L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL); if ((!(((uint32_t)L_41) == ((uint32_t)L_43)))) { goto IL_0082; } } { V_2 = 0; goto IL_0025; } IL_0082: { String_t* L_44 = ___stringToFind0; int32_t L_45 = V_0; NullCheck(L_44); Il2CppChar L_46; L_46 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_44, L_45, NULL); V_2 = L_46; int32_t L_47 = V_2; if ((((int32_t)L_47) <= ((int32_t)((int32_t)122)))) { goto IL_0091; } } { return (uint8_t)0; } IL_0091: { int32_t L_48 = V_2; if ((((int32_t)L_48) < ((int32_t)((int32_t)97)))) { goto IL_0025; } } { int32_t L_49 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract(L_49, ((int32_t)32))); goto IL_0025; } IL_009d: { return (uint8_t)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.SecureStringHasher::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecureStringHasher__ctor_m1F7C97F1DB5BEC1B80480E7CB4019B8E68CC4E92 (SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); int32_t L_0; L_0 = Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276(NULL); __this->___hashCodeRandomizer_1 = L_0; return; } } // System.Boolean System.Xml.SecureStringHasher::Equals(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SecureStringHasher_Equals_m8B63A714C33E1F7F738D528913B19165972CDDE7 (SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) { { String_t* L_0 = ___x0; String_t* L_1 = ___y1; bool L_2; L_2 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_0, L_1, 4, NULL); return L_2; } } // System.Int32 System.Xml.SecureStringHasher::GetHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SecureStringHasher_GetHashCode_m227DB10B51581EC41428AA34560415F9916FF8C4 (SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* __this, String_t* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* L_0 = ((SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var))->___hashCodeDelegate_0; if (L_0) { goto IL_0011; } } { HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* L_1; L_1 = SecureStringHasher_GetHashCodeDelegate_m6C9C4CBECF82A2B8FE9F2B6B3584E09E10358867(NULL); ((SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var))->___hashCodeDelegate_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var))->___hashCodeDelegate_0), (void*)L_1); } IL_0011: { HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* L_2 = ((SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_StaticFields*)il2cpp_codegen_static_fields_for(SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var))->___hashCodeDelegate_0; String_t* L_3 = ___key0; String_t* L_4 = ___key0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); int32_t L_6 = __this->___hashCodeRandomizer_1; NullCheck(L_2); int32_t L_7; L_7 = HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_inline(L_2, L_3, L_5, ((int64_t)L_6), NULL); return L_7; } } // System.Int32 System.Xml.SecureStringHasher::GetHashCodeOfString(System.String,System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SecureStringHasher_GetHashCodeOfString_mBBD10280C76FF68FD4EFDBBABC576489A7FC209B (String_t* ___key0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int64_t L_0 = ___additionalEntropy2; V_0 = ((int32_t)L_0); V_1 = 0; goto IL_0019; } IL_0007: { int32_t L_1 = V_0; int32_t L_2 = V_0; String_t* L_3 = ___key0; int32_t L_4 = V_1; NullCheck(L_3); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL); V_0 = ((int32_t)il2cpp_codegen_add(L_1, ((int32_t)(((int32_t)(L_2<<7))^(int32_t)L_5)))); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1)); } IL_0019: { int32_t L_7 = V_1; String_t* L_8 = ___key0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_0007; } } { int32_t L_10 = V_0; int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_10, ((int32_t)(L_11>>((int32_t)17))))); int32_t L_12 = V_0; int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_12, ((int32_t)(L_13>>((int32_t)11))))); int32_t L_14 = V_0; int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_14, ((int32_t)(L_15>>5)))); int32_t L_16 = V_0; return L_16; } } // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::GetHashCodeDelegate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* SecureStringHasher_GetHashCodeDelegate_m6C9C4CBECF82A2B8FE9F2B6B3584E09E10358867 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_GetHashCodeOfString_mBBD10280C76FF68FD4EFDBBABC576489A7FC209B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9319D8D06606B8F2B10B57EBAABAE57F7D5B8E7); s_Il2CppMethodInitialized = true; } MethodInfo_t* V_0 = NULL; { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_1; L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL); NullCheck(L_1); MethodInfo_t* L_2; L_2 = Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D(L_1, _stringLiteralD9319D8D06606B8F2B10B57EBAABAE57F7D5B8E7, ((int32_t)40), NULL); V_0 = L_2; MethodInfo_t* L_3 = V_0; bool L_4; L_4 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_3, (MethodInfo_t*)NULL, NULL); if (!L_4) { goto IL_0036; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_6; L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL); MethodInfo_t* L_7 = V_0; Delegate_t* L_8; L_8 = Delegate_CreateDelegate_mA2E221A01A8B3FBEC4C8A529F3C213C60A3A2C53(L_6, L_7, NULL); return ((HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046*)CastclassSealed((RuntimeObject*)L_8, HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_il2cpp_TypeInfo_var)); } IL_0036: { HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* L_9 = (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046*)il2cpp_codegen_object_new(HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046_il2cpp_TypeInfo_var); NullCheck(L_9); HashCodeOfStringDelegate__ctor_m5635DF373D683517CDFD80D0EB8C380E78BFFA58(L_9, NULL, (intptr_t)((void*)SecureStringHasher_GetHashCodeOfString_mBBD10280C76FF68FD4EFDBBABC576489A7FC209B_RuntimeMethod_var), NULL); return L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Multicast(HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); typedef int32_t (*FunctionPointerType) (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method); int32_t retVal = 0; for (il2cpp_array_size_t i = 0; i < length; i++) { HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___s0, ___sLen1, ___additionalEntropy2, reinterpret_cast(currentDelegate->___method_3)); } return retVal; } int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Open(HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); return ((FunctionPointerType)__this->___method_ptr_0)(___s0, ___sLen1, ___additionalEntropy2, method); } int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Closed(HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (*FunctionPointerType) (RuntimeObject*, String_t*, int32_t, int64_t, const RuntimeMethod*); return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___s0, ___sLen1, ___additionalEntropy2, method); } int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_OpenStaticInvoker(HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { return InvokerFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(__this->___method_ptr_0, method, NULL, ___s0, ___sLen1, ___additionalEntropy2); } int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_ClosedStaticInvoker(HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { return InvokerFuncInvoker4< int32_t, RuntimeObject*, String_t*, int32_t, int64_t >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___s0, ___sLen1, ___additionalEntropy2); } IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046 (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(char*, int32_t, int64_t); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this)); // Marshaling of parameter '___s0' to native representation char* ____s0_marshaled = NULL; ____s0_marshaled = il2cpp_codegen_marshal_string(___s0); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(____s0_marshaled, ___sLen1, ___additionalEntropy2); // Marshaling cleanup of parameter '___s0' native representation il2cpp_codegen_marshal_free(____s0_marshaled); ____s0_marshaled = NULL; return returnValue; } // System.Void System.Xml.SecureStringHasher/HashCodeOfStringDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashCodeOfStringDelegate__ctor_m5635DF373D683517CDFD80D0EB8C380E78BFFA58 (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __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 == 3; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Open; else __this->___invoke_impl_1 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Closed; } else { bool isOpen = methodCount == 2; if (isOpen) { __this->___invoke_impl_1 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Open; } else { __this->___invoke_impl_1 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Closed; } } __this->___extra_arg_5 = (intptr_t)&HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_Multicast; } // System.Int32 System.Xml.SecureStringHasher/HashCodeOfStringDelegate::Invoke(System.String,System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2 (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (*FunctionPointerType) (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method); return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___s0, ___sLen1, ___additionalEntropy2, reinterpret_cast(__this->___method_3)); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.TextEncodedRawTextWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter__ctor_m0F3178F2FEB6E3D0034A426601B62115A33F3058 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___writer0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; XmlEncodedRawTextWriter__ctor_mF6EBA0A44503EE7400D3901E059BDFEB8110B205(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.TextEncodedRawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter__ctor_m4C6DDBDA6F89D63BBB72AFCB2D4B5CCD52801A9E (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; XmlEncodedRawTextWriter__ctor_mEDAEC401E6AB69FC8728E0217038DFEBE2C3F564(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteXmlDeclaration_m17963C5F644F4A2C320DA49FE14E5278235FAB94 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, int32_t ___standalone0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteXmlDeclaration_mB2A59E806BD48A742E3254C1AC9094AA36FFA8FD (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteDocType_m78F6CE08DA15E2F601DD6AE51AF28F355BE713A8 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteStartElement_m7A2013ECE0F5C9FB54F09B465CAE9EE4BA7AAA8E (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteEndElement_mB4849F30BD331D9B27ABFC6D9939DDFE2B539282 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteFullEndElement_m8DED220459F56CEC228B5AF6C11D4CD875643037 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_StartElementContent_mD82189B4F2BA88DB92E122CE1992A124A7E56313 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteStartAttribute_mA66BEFE59E293917C870041AA0C8072BFBCD0E8B (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16 = (bool)1; return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteEndAttribute_m8455128149EB3673525AAEAB1D3D773A23757B0E (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, const RuntimeMethod* method) { { ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16 = (bool)0; return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteNamespaceDeclaration(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteNamespaceDeclaration_m3CF4B6D08C8CB24908C6C10A8A13FEE0BDCE3CA0 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.TextEncodedRawTextWriter::get_SupportsNamespaceDeclarationInChunks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextEncodedRawTextWriter_get_SupportsNamespaceDeclarationInChunks_m30DE2ADA69F5C389357216B73451FA28AA461E0E (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteCData_mA8512DFFA7FAF0092048DAC0C22F02B016DD1161 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6(__this, L_0, NULL); return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteComment_m5072B9FD22F4257C1E214C271D2FEF359F2D9C76 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___text0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteProcessingInstruction_m508A7FD098A007D9C5B5ED4B1BC8C7A67DBD2E4C (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteEntityRef_m826CED23496145F87A932D7DD65D30F78734B19B (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___name0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteCharEntity_m990BD910A686FFC59AD438C6768B8998C42A5987 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteSurrogateCharEntity_mF7945E71C822CE115D0C09FDF4EC3BD7CE1CA13B (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteWhitespace_m22C3D55CC11BA345D710246C47E0F146348FA8D1 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___ws0, const RuntimeMethod* method) { { bool L_0 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16; if (L_0) { goto IL_000f; } } { String_t* L_1 = ___ws0; XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6(__this, L_1, NULL); } IL_000f: { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteString_mD81DFD6E0FACD0D60B7383189DA21D366710550E (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___textBlock0, const RuntimeMethod* method) { { bool L_0 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16; if (L_0) { goto IL_000f; } } { String_t* L_1 = ___textBlock0; XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6(__this, L_1, NULL); } IL_000f: { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteChars_m5DDC11920C83F7DEA6B2A1ABE875239D4B502C9A (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { bool L_0 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16; if (L_0) { goto IL_0011; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; XmlEncodedRawTextWriter_WriteRaw_m377C81F6B413480998B3FFBE321070D4B3E3959C(__this, L_1, L_2, L_3, NULL); } IL_0011: { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteRaw_m45D46C69C8238DD4AEC0819764603E1801F4BA26 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { bool L_0 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16; if (L_0) { goto IL_0011; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; XmlEncodedRawTextWriter_WriteRaw_m377C81F6B413480998B3FFBE321070D4B3E3959C(__this, L_1, L_2, L_3, NULL); } IL_0011: { return; } } // System.Void System.Xml.TextEncodedRawTextWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter_WriteRaw_mAA7443CF3E3278ADE392B45A5872D558570223B5 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, String_t* ___data0, const RuntimeMethod* method) { { bool L_0 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___inAttributeValue_16; if (L_0) { goto IL_000f; } } { String_t* L_1 = ___data0; XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6(__this, L_1, NULL); } IL_000f: { 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.TextUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter__ctor_m6220E9A18AC54E47143C779232F23C4B993DC467 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; XmlUtf8RawTextWriter__ctor_m3FED45E976C290A249ADEFDCB6B4D899997D6FB2(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteXmlDeclaration_m316CFFB18B9E93C132269387437596B9BAB9C53D (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, int32_t ___standalone0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteXmlDeclaration_m934F6D430ADAF09945AD1E3A22BC7A749896747E (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteDocType_m42E310E885F5F58DCC0B1C9654EAEB5EEA4BE5F9 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteStartElement_m195F7DCE0F53582481C25CEE59AE194845145642 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteEndElement_m1B147F8C30AE643BADCBED63D699F633AAEA8F5F (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteFullEndElement_m8907DFD2851D5B3E355D73F833B15FC6F0965A6D (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_StartElementContent_m04149EA2BBDC4CD21793F48EB175E857158C14A9 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteStartAttribute_m5DBD57E2AA54CE4AF834F43B8138681E3FCCD713 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16 = (bool)1; return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteEndAttribute_m199DC647E9B39C2F27E587AD451EC63A976AE6D0 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, const RuntimeMethod* method) { { ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16 = (bool)0; return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteNamespaceDeclaration(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteNamespaceDeclaration_m2BE23B6963BAC0E6FA7E78CA40209FC2F4DC35A5 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.TextUtf8RawTextWriter::get_SupportsNamespaceDeclarationInChunks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextUtf8RawTextWriter_get_SupportsNamespaceDeclarationInChunks_m3B4C9488045D3AB50FFCCB2AAA5A15EABFED22D2 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteCData_m1443079B89BEB72104012444887BCB8A3240E931 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94(__this, L_0, NULL); return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteComment_mE885FCA886D493D273127564FF04D8E88E75FC1C (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___text0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteProcessingInstruction_mE2F9A042332F6411F15A22D20984C8F871FD5D5D (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteEntityRef_m13D9021386799EB68A60DA12A05CE5A0A2BCD4CB (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___name0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteCharEntity_mFDBC4992B5F50D34C037CB8BED35C7D4E04E3530 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteSurrogateCharEntity_m4656B9CFCE40FF2E9D926C45918A1AD4C69E6977 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteWhitespace_mC32633ABE143F80F6B0DCB489BC6E7F950FFCE63 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___ws0, const RuntimeMethod* method) { { bool L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16; if (L_0) { goto IL_000f; } } { String_t* L_1 = ___ws0; XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94(__this, L_1, NULL); } IL_000f: { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteString_m7EEAE6A69EE14286E38E0649AA60A2B033B7B815 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___textBlock0, const RuntimeMethod* method) { { bool L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16; if (L_0) { goto IL_000f; } } { String_t* L_1 = ___textBlock0; XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94(__this, L_1, NULL); } IL_000f: { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteChars_mD6BAB71E9B6B97408652D1332CC044DBC5E70E0E (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { bool L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16; if (L_0) { goto IL_0011; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; XmlUtf8RawTextWriter_WriteRaw_m1CD2BE14DD496B9EA6D2093F8555677CC1B52096(__this, L_1, L_2, L_3, NULL); } IL_0011: { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteRaw_m2FD369EBC2B92C38C8141709F94D4023DF36824F (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { bool L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16; if (L_0) { goto IL_0011; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; XmlUtf8RawTextWriter_WriteRaw_m1CD2BE14DD496B9EA6D2093F8555677CC1B52096(__this, L_1, L_2, L_3, NULL); } IL_0011: { return; } } // System.Void System.Xml.TextUtf8RawTextWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter_WriteRaw_mDCFB8402F0078164663625538D5DB11953664674 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, String_t* ___data0, const RuntimeMethod* method) { { bool L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___inAttributeValue_16; if (L_0) { goto IL_000f; } } { String_t* L_1 = ___data0; XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94(__this, L_1, NULL); } IL_000f: { 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.ValidatingReaderNodeData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData__ctor_mA1CD5C02D6EAC0721EC87DF21AA34EB03EA129E2 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B(__this, 0, NULL); return; } } // System.Void System.Xml.ValidatingReaderNodeData::.ctor(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData__ctor_m6A898DD01B67F8F6F4B2E21FD45394E04AF38AAE (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___nodeType0, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); int32_t L_0 = ___nodeType0; ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B(__this, L_0, NULL); return; } } // System.String System.Xml.ValidatingReaderNodeData::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___localName_0; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_LocalName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_LocalName_m2A3D6FEE94D3628CB8E2621C672E268603C649CB (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->___localName_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_0), (void*)L_0); return; } } // System.String System.Xml.ValidatingReaderNodeData::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___namespaceUri_1; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_Namespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_Namespace_mBF2CA776F072E2780A847C3C53A9BAABBE537362 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->___namespaceUri_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_1), (void*)L_0); return; } } // System.String System.Xml.ValidatingReaderNodeData::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_Prefix_m47A65BB79C9FE8B2152542E47AB5DB9FDD0F3D34 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___prefix_2; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_Prefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_Prefix_m1C9BD81384D6A74AB3DD061F65B9EACFA9B89F78 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->___prefix_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_2), (void*)L_0); return; } } // System.String System.Xml.ValidatingReaderNodeData::GetAtomizedNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_GetAtomizedNameWPrefix_m46C836E6E3638B0C449430C2B5B9CCBF8F1A0BEE (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->___nameWPrefix_3; if (L_0) { goto IL_0045; } } { String_t* L_1 = __this->___prefix_2; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if (L_2) { goto IL_0023; } } { String_t* L_3 = __this->___localName_0; __this->___nameWPrefix_3 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_3), (void*)L_3); goto IL_0045; } IL_0023: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_4 = ___nameTable0; String_t* L_5 = __this->___prefix_2; String_t* L_6 = __this->___localName_0; String_t* L_7; L_7 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_5, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_6, NULL); NullCheck(L_4); String_t* L_8; L_8 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_4, L_7); __this->___nameWPrefix_3 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_3), (void*)L_8); } IL_0045: { String_t* L_9 = __this->___nameWPrefix_3; return L_9; } } // System.Int32 System.Xml.ValidatingReaderNodeData::get_Depth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___depth_6; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_Depth(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->___depth_6 = L_0; return; } } // System.String System.Xml.ValidatingReaderNodeData::get_RawValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___rawValue_4; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_RawValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_RawValue_mEE082D1AA279EC32C842D3F17574B5839F42B4A4 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->___rawValue_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___rawValue_4), (void*)L_0); return; } } // System.String System.Xml.ValidatingReaderNodeData::get_OriginalStringValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_OriginalStringValue_m7324BC2DF5C5339DA89755D74D480D7CD842D95C (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___originalStringValue_5; return L_0; } } // System.Xml.XmlNodeType System.Xml.ValidatingReaderNodeData::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___nodeType_8; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_NodeType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_NodeType_mED6E21F9A61E7573CE7737A07E0DAE7CF693A4D2 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->___nodeType_8 = L_0; return; } } // System.Xml.AttributePSVIInfo System.Xml.ValidatingReaderNodeData::get_AttInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_0 = __this->___attributePSVIInfo_7; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::set_AttInfo(System.Xml.AttributePSVIInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_AttInfo_m95B6B57A08EDC4C8BA91A4245D459ABA150FA94C (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ___value0, const RuntimeMethod* method) { { AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_0 = ___value0; __this->___attributePSVIInfo_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVIInfo_7), (void*)L_0); return; } } // System.Int32 System.Xml.ValidatingReaderNodeData::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_LineNumber_m60328F5D1F021D01F27CACC6AD42227DE2F2D515 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNo_9; return L_0; } } // System.Int32 System.Xml.ValidatingReaderNodeData::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_LinePosition_mCA2EE6761998E637338A7D98AC7BD2CB7DD6FEA5 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePos_10; return L_0; } } // System.Void System.Xml.ValidatingReaderNodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___nodeType0, 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 = ___nodeType0; __this->___nodeType_8 = L_0; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___localName_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_0), (void*)L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___prefix_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_2), (void*)L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___namespaceUri_1 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_1), (void*)L_3); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___rawValue_4 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___rawValue_4), (void*)L_4); AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_5 = __this->___attributePSVIInfo_7; if (!L_5) { goto IL_0046; } } { AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_6 = __this->___attributePSVIInfo_7; NullCheck(L_6); AttributePSVIInfo_Reset_m6BCB21E222189F063C0D2A7ECCB6D72AC9D086AA(L_6, NULL); } IL_0046: { __this->___nameWPrefix_3 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_3), (void*)(String_t*)NULL); __this->___lineNo_9 = 0; __this->___linePos_10 = 0; return; } } // System.Void System.Xml.ValidatingReaderNodeData::SetLineInfo(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetLineInfo_m71C3928A3D901AA471D6BE00B632A1BF21C120B6 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { { int32_t L_0 = ___lineNo0; __this->___lineNo_9 = L_0; int32_t L_1 = ___linePos1; __this->___linePos_10 = L_1; return; } } // System.Void System.Xml.ValidatingReaderNodeData::SetLineInfo(System.Xml.IXmlLineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, RuntimeObject* ___lineInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___lineInfo0; if (!L_0) { goto IL_001b; } } { RuntimeObject* L_1 = ___lineInfo0; NullCheck(L_1); int32_t L_2; L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Xml.IXmlLineInfo::get_LineNumber() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_1); __this->___lineNo_9 = L_2; RuntimeObject* L_3 = ___lineInfo0; NullCheck(L_3); int32_t L_4; L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Xml.IXmlLineInfo::get_LinePosition() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_3); __this->___linePos_10 = L_4; } IL_001b: { return; } } // System.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String,System.String,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_m60B5ABC34768946CDA319A032F5B03A49D63D15A (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___localName0, String_t* ___prefix1, String_t* ___ns2, int32_t ___depth3, 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 = ___localName0; __this->___localName_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_0), (void*)L_0); String_t* L_1 = ___prefix1; __this->___prefix_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_2), (void*)L_1); String_t* L_2 = ___ns2; __this->___namespaceUri_1 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_1), (void*)L_2); int32_t L_3 = ___depth3; __this->___depth_6 = L_3; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___rawValue_4 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___rawValue_4), (void*)L_4); return; } } // System.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_mA8A50401A6E8A82C6F5DB7D166EB1DACD0450FA4 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; String_t* L_1 = ___value0; ValidatingReaderNodeData_SetItemData_m6F20EE6D67B53597EFEE48860915168BD55FBF22(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_m6F20EE6D67B53597EFEE48860915168BD55FBF22 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, String_t* ___originalStringValue1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->___rawValue_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___rawValue_4), (void*)L_0); String_t* L_1 = ___originalStringValue1; __this->___originalStringValue_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___originalStringValue_5), (void*)L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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.XmlReader System.Xml.XmlAsyncCheckReader::get_CoreReader() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlAsyncCheckReader_get_CoreReader_m7EEC14B20E5C6021736672F4DA2503B14E670A93 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; return L_0; } } // System.Xml.XmlAsyncCheckReader System.Xml.XmlAsyncCheckReader::CreateAsyncCheckWrapper(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* XmlAsyncCheckReader_CreateAsyncCheckWrapper_m86BBCB3E138D17E6A956E42A87A39346ED011D74 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_0, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var))) { goto IL_002d; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var))) { goto IL_0026; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = ___reader0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_2, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var))) { goto IL_001f; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = ___reader0; XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* L_4 = (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A*)il2cpp_codegen_object_new(XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A_il2cpp_TypeInfo_var); NullCheck(L_4); XmlAsyncCheckReaderWithLineInfoNSSchema__ctor_m717A0AA4ACD08B6E45E0594D00220CB14BAF2284(L_4, L_3, NULL); return L_4; } IL_001f: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = ___reader0; XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629* L_6 = (XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629*)il2cpp_codegen_object_new(XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629_il2cpp_TypeInfo_var); NullCheck(L_6); XmlAsyncCheckReaderWithLineInfoNS__ctor_m01293D26DE17269F9DC1E5668C460AB7D97205CC(L_6, L_5, NULL); return L_6; } IL_0026: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = ___reader0; XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE* L_8 = (XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE*)il2cpp_codegen_object_new(XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE_il2cpp_TypeInfo_var); NullCheck(L_8); XmlAsyncCheckReaderWithLineInfo__ctor_mF1A895DB0EFCB2031EF258B1ADD7AA3C3E8622DE(L_8, L_7, NULL); return L_8; } IL_002d: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = ___reader0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_9, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var))) { goto IL_003c; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = ___reader0; XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5* L_11 = (XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5*)il2cpp_codegen_object_new(XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5_il2cpp_TypeInfo_var); NullCheck(L_11); XmlAsyncCheckReaderWithNS__ctor_m51BEC76F7ADD099A67A4503BC5E4BBB4446DC8F9(L_11, L_10, NULL); return L_11; } IL_003c: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = ___reader0; XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* L_13 = (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4*)il2cpp_codegen_object_new(XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4_il2cpp_TypeInfo_var); NullCheck(L_13); XmlAsyncCheckReader__ctor_m57D1178A8D9AF5D1EE18D16B4B9B96A5F17E5A78(L_13, L_12, NULL); return L_13; } } // System.Void System.Xml.XmlAsyncCheckReader::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader__ctor_m57D1178A8D9AF5D1EE18D16B4B9B96A5F17E5A78 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var); Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = ((AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_StaticFields*)il2cpp_codegen_static_fields_for(AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var))->___DoneTask_0; __this->___lastTask_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastTask_4), (void*)L_0); il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; __this->___coreReader_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_1); return; } } // System.Void System.Xml.XmlAsyncCheckReader::CheckAsync() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = __this->___lastTask_4; NullCheck(L_0); bool L_1; L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831(L_0, NULL); if (L_1) { goto IL_001d; } } { String_t* L_2; L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF802447DCA401035D8E475710B790B206A9A34EF)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_3); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F_RuntimeMethod_var))); } IL_001d: { return; } } // System.Xml.XmlReaderSettings System.Xml.XmlAsyncCheckReader::get_Settings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlAsyncCheckReader_get_Settings_mC9AF6EBBACAF7623DF2B5A1B073EEAD7A2B0572C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* V_0 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1; L_1 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_0); V_0 = L_1; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = V_0; if (!L_2) { goto IL_0018; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_3 = V_0; NullCheck(L_3); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_4; L_4 = XmlReaderSettings_Clone_m6581889814EA9982ABCE97535D76722F81972101(L_3, NULL); V_0 = L_4; goto IL_001e; } IL_0018: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_5 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); NullCheck(L_5); XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_5, NULL); V_0 = L_5; } IL_001e: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_6 = V_0; NullCheck(L_6); XmlReaderSettings_set_Async_mD6BEC19B95948116F459E8B53B7FDFBFD52135D3(L_6, (bool)1, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_7 = V_0; NullCheck(L_7); XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline(L_7, (bool)1, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_8 = V_0; return L_8; } } // System.Xml.XmlNodeType System.Xml.XmlAsyncCheckReader::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_get_NodeType_m74920791B7AB06DABD4156E14719E0BA9007D71C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_Name_m66AC18B1903664459ECE0D652F4618B0AEE670DD (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_LocalName_m9A464DF7E6EB54D55C390A88ACB79F50F508248D (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_NamespaceURI_mC0B04C91DFDFB55075FBF5C23D0C4A8871FCCE4F (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_Prefix_m2841185D0B40D3AC4D63116ABC2D9217B40A121E (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_Value_mAB52C2333599CFCEB199A3B7395F47FFF1662096 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_0); return L_1; } } // System.Int32 System.Xml.XmlAsyncCheckReader::get_Depth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_get_Depth_m90DEFBF19C3E52DDC46871AB6CAA650D4BADCF92 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_BaseURI_m6C6F2C3A33FE994C72095A0DF19EACAAEE40BD25 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_get_IsEmptyElement_m171DAC813D640FF7E4EA30C66E72DF54DBA6257D (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_get_IsDefault_m77C540B9CE7DB9CEE66CA5E0A36AF97BCFCCFA38 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_0); return L_1; } } // System.Char System.Xml.XmlAsyncCheckReader::get_QuoteChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XmlAsyncCheckReader_get_QuoteChar_mCEDFEB6DD0DD2B62D184D9C3422EBEA96016F61D (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); Il2CppChar L_1; L_1 = VirtualFuncInvoker0< Il2CppChar >::Invoke(16 /* System.Char System.Xml.XmlReader::get_QuoteChar() */, L_0); return L_1; } } // System.Xml.XmlSpace System.Xml.XmlAsyncCheckReader::get_XmlSpace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_get_XmlSpace_mF3E5F1A927570E81CAF247565B2F79432CB4F731 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(17 /* System.Xml.XmlSpace System.Xml.XmlReader::get_XmlSpace() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::get_XmlLang() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_get_XmlLang_mFE8E69E8344EBB5F24C26D1F10D4D3DBF8923C1C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.XmlReader::get_XmlLang() */, L_0); return L_1; } } // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlAsyncCheckReader::get_SchemaInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAsyncCheckReader_get_SchemaInfo_m318E91A85EC2A5461604339428834231DF7F73CD (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_0); return L_1; } } // System.Type System.Xml.XmlAsyncCheckReader::get_ValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlAsyncCheckReader_get_ValueType_mF0062CA30841610F998D2ED8A0DAD94354C5B98F (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); Type_t* L_1; L_1 = VirtualFuncInvoker0< Type_t* >::Invoke(20 /* System.Type System.Xml.XmlReader::get_ValueType() */, L_0); return L_1; } } // System.Int32 System.Xml.XmlAsyncCheckReader::get_AttributeCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_get_AttributeCount_m3E7D43E8741CC31CD7F8AAED3AC08E1986FB83F3 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::GetAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_GetAttribute_mEE55F6998E52DBF387EEB177BF0AEE5BD96205C4 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, String_t* ___name0, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; String_t* L_1 = ___name0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlAsyncCheckReader::GetAttribute(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_GetAttribute_mF0167F74233B3333E12B3438D204A229920231EE (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, String_t* ___name0, String_t* ___namespaceURI1, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; String_t* L_1 = ___name0; String_t* L_2 = ___namespaceURI1; 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); return L_3; } } // System.String System.Xml.XmlAsyncCheckReader::GetAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_GetAttribute_m8EDFF2DFD97F06E868BE6879C2958F4FC001E994 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, int32_t ___i0, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; int32_t L_1 = ___i0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(24 /* System.String System.Xml.XmlReader::GetAttribute(System.Int32) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlAsyncCheckReader::MoveToAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_MoveToAttribute_mCFDB711099F305FB65975B42DA1E2AFD3FAC600A (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, String_t* ___name0, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; String_t* L_1 = ___name0; NullCheck(L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_0, L_1); return L_2; } } // System.Void System.Xml.XmlAsyncCheckReader::MoveToAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_MoveToAttribute_m5F8B23CE344759E159B732BE74CBE615684D618C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, int32_t ___i0, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; int32_t L_1 = ___i0; NullCheck(L_0); VirtualActionInvoker1< int32_t >::Invoke(26 /* System.Void System.Xml.XmlReader::MoveToAttribute(System.Int32) */, L_0, L_1); return; } } // System.Boolean System.Xml.XmlAsyncCheckReader::MoveToFirstAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_MoveToFirstAttribute_mDE66A670E78852C27684B2C0315E774EC496931A (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::MoveToNextAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_MoveToNextAttribute_mA1C48367F53E2774C17B921BF992C503BEAE5F32 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::MoveToElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_MoveToElement_m78D6D5E70A58D325037A942861299EC1275C0589 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::ReadAttributeValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_ReadAttributeValue_mD5E651EAE86C05032EA67025E635F2FA04092D41 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::Read() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_Read_m3022DE4D2CF10F88BE850A21A4A180EE4CDBA99F (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::get_EOF() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_get_EOF_m9B75B77DE55CD97382C74567DB603DB4D1250923 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(32 /* System.Boolean System.Xml.XmlReader::get_EOF() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_Close_m9027798EBDCFCA83A01FD6F98C99FB1D4D1C4E60 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, L_0); return; } } // System.Xml.ReadState System.Xml.XmlAsyncCheckReader::get_ReadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_get_ReadState_mA879B0B75AF1A11CC00D4D54058F20C6417947DD (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckReader::Skip() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_Skip_m70095D7F4E7C251B6B0FCF4D9E907B89D420045D (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_0); return; } } // System.Xml.XmlNameTable System.Xml.XmlAsyncCheckReader::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlAsyncCheckReader_get_NameTable_m134998214911192B6E8F0906471C1478941A6565 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1; L_1 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0); return L_1; } } // System.String System.Xml.XmlAsyncCheckReader::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_LookupNamespace_mD5D81B8E6C62DF2CA72A8D924101D696D946D59C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, String_t* ___prefix0, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; String_t* L_1 = ___prefix0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlAsyncCheckReader::get_CanResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_get_CanResolveEntity_m65855D298DED2BE5ACA8D7EDF73B49EA7D5B8061 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckReader::ResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_ResolveEntity_m34ED408DC47D8982DD06662086F3C9537E0444E0 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_0); return; } } // System.Boolean System.Xml.XmlAsyncCheckReader::get_CanReadValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_get_CanReadValueChunk_m74F9DD150C0846B9A188E5525667522C2E95931C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Xml.XmlReader::get_CanReadValueChunk() */, L_0); return L_1; } } // System.Int32 System.Xml.XmlAsyncCheckReader::ReadValueChunk(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_ReadValueChunk_mD8A0C2D70C8A5115333B1CCE4CEDF305075652E7 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); int32_t L_4; L_4 = VirtualFuncInvoker3< int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(41 /* System.Int32 System.Xml.XmlReader::ReadValueChunk(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return L_4; } } // System.String System.Xml.XmlAsyncCheckReader::ReadString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_ReadString_mF01EA2B48CDCAABBD3832D87D3339C68F5667EF7 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_0); return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlAsyncCheckReader::MoveToContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReader_MoveToContent_mB63313570732AAA23D0979FB25468A8935FBEC1E (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckReader::ReadStartElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_ReadStartElement_m9242F2124D01761426D5B60A25E885E3C96A48EF (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_0); return; } } // System.String System.Xml.XmlAsyncCheckReader::ReadElementString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_ReadElementString_m7D585B78AAB653AF2144A9164F6362AB4CE84864 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(45 /* System.String System.Xml.XmlReader::ReadElementString() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckReader::ReadEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_ReadEndElement_mF79B243B11899ED51EFED17F939220D2E78C56AF (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_0); return; } } // System.Boolean System.Xml.XmlAsyncCheckReader::IsStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_IsStartElement_mF513C7D7F4A7553DB4A89EBDA0B4F8A877C79547 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, String_t* ___localname0, String_t* ___ns1, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; String_t* L_1 = ___localname0; String_t* L_2 = ___ns1; NullCheck(L_0); bool L_3; L_3 = VirtualFuncInvoker2< bool, String_t*, String_t* >::Invoke(47 /* System.Boolean System.Xml.XmlReader::IsStartElement(System.String,System.String) */, L_0, L_1, L_2); return L_3; } } // System.String System.Xml.XmlAsyncCheckReader::ReadInnerXml() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReader_ReadInnerXml_mE41B655F09E7074986426147FA641508701C900F (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(48 /* System.String System.Xml.XmlReader::ReadInnerXml() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReader::get_HasAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReader_get_HasAttributes_mDEBF78249C5F9A47EA1A0533B55A381B8D04C39C (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(49 /* System.Boolean System.Xml.XmlReader::get_HasAttributes() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckReader::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReader_Dispose_mEEAFECC96F9021347F203652B424EAF34892FA38 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, bool ___disposing0, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); XmlReader_Dispose_m48A2333E0A2A858E7F6B3B0B7DE63E33B819929D(L_0, NULL); return; } } // System.Xml.XmlNamespaceManager System.Xml.XmlAsyncCheckReader::get_NamespaceManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlAsyncCheckReader_get_NamespaceManager_mE5ADA41603AAF76B98B5975EC6C8F6F5BED033C1 (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1; L_1 = VirtualFuncInvoker0< XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* >::Invoke(51 /* System.Xml.XmlNamespaceManager System.Xml.XmlReader::get_NamespaceManager() */, L_0); return L_1; } } // System.Xml.IDtdInfo System.Xml.XmlAsyncCheckReader::get_DtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAsyncCheckReader_get_DtdInfo_m911ECE05C75BFE3F00071D6EAAFEB7A72317586B (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method) { { XmlAsyncCheckReader_CheckAsync_mBEBABEBA48FF3AD449259427038A3A471D58062F(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_0); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlAsyncCheckReaderWithNS::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithNS__ctor_m51BEC76F7ADD099A67A4503BC5E4BBB4446DC8F9 (XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; XmlAsyncCheckReader__ctor_m57D1178A8D9AF5D1EE18D16B4B9B96A5F17E5A78(__this, L_0, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; __this->___readerAsIXmlNamespaceResolver_5 = ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___readerAsIXmlNamespaceResolver_5), (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var))); return; } } // System.Collections.Generic.IDictionary`2 System.Xml.XmlAsyncCheckReaderWithNS::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAsyncCheckReaderWithNS_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_mFB68238B44BC8511BCB253E3694C2C0CF47CF6C9 (XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5* __this, int32_t ___scope0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlNamespaceResolver_5; int32_t L_1 = ___scope0; NullCheck(L_0); RuntimeObject* L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Collections.Generic.IDictionary`2 System.Xml.IXmlNamespaceResolver::GetNamespacesInScope(System.Xml.XmlNamespaceScope) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.String System.Xml.XmlAsyncCheckReaderWithNS::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReaderWithNS_System_Xml_IXmlNamespaceResolver_LookupNamespace_mB58BE39B3F66BFFE0D4825C0C47799A4274D64E9 (XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5* __this, String_t* ___prefix0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlNamespaceResolver_5; String_t* L_1 = ___prefix0; NullCheck(L_0); String_t* L_2; L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.String System.Xml.XmlAsyncCheckReaderWithNS::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReaderWithNS_System_Xml_IXmlNamespaceResolver_LookupPrefix_mACA50553B283AC7C33F6484D3158FAFAD3BFC14A (XmlAsyncCheckReaderWithNS_t45EF8629B68CDA4DA530DA8DFE2E84B6CBDA51D5* __this, String_t* ___namespaceName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlNamespaceResolver_5; String_t* L_1 = ___namespaceName0; NullCheck(L_0); String_t* L_2; L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(2 /* System.String System.Xml.IXmlNamespaceResolver::LookupPrefix(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_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 // System.Void System.Xml.XmlAsyncCheckReaderWithLineInfo::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithLineInfo__ctor_mF1A895DB0EFCB2031EF258B1ADD7AA3C3E8622DE (XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; XmlAsyncCheckReader__ctor_m57D1178A8D9AF5D1EE18D16B4B9B96A5F17E5A78(__this, L_0, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; __this->___readerAsIXmlLineInfo_5 = ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___readerAsIXmlLineInfo_5), (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var))); return; } } // System.Boolean System.Xml.XmlAsyncCheckReaderWithLineInfo::HasLineInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReaderWithLineInfo_HasLineInfo_mB3782A644DABB245CE63FE20F32EC8B99768DE73 (XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlLineInfo_5; NullCheck(L_0); bool L_1; L_1 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Xml.IXmlLineInfo::HasLineInfo() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Int32 System.Xml.XmlAsyncCheckReaderWithLineInfo::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReaderWithLineInfo_get_LineNumber_m6E2953C24684BDBF29AD8E974D847C745E7CA586 (XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlLineInfo_5; NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Xml.IXmlLineInfo::get_LineNumber() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Int32 System.Xml.XmlAsyncCheckReaderWithLineInfo::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReaderWithLineInfo_get_LinePosition_m7109037DB7595F19932CA5C5D46A735462AE7E52 (XmlAsyncCheckReaderWithLineInfo_t8FF975EFD0E6507376183AE0E38DF2B9E670ADDE* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlLineInfo_5; NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Xml.IXmlLineInfo::get_LinePosition() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_0); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlAsyncCheckReaderWithLineInfoNS::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithLineInfoNS__ctor_m01293D26DE17269F9DC1E5668C460AB7D97205CC (XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; XmlAsyncCheckReaderWithLineInfo__ctor_mF1A895DB0EFCB2031EF258B1ADD7AA3C3E8622DE(__this, L_0, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; __this->___readerAsIXmlNamespaceResolver_6 = ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___readerAsIXmlNamespaceResolver_6), (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var))); return; } } // System.Collections.Generic.IDictionary`2 System.Xml.XmlAsyncCheckReaderWithLineInfoNS::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAsyncCheckReaderWithLineInfoNS_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_m9B0D9B4267241729CF4230EA7B10A21EE571A28C (XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629* __this, int32_t ___scope0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlNamespaceResolver_6; int32_t L_1 = ___scope0; NullCheck(L_0); RuntimeObject* L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Collections.Generic.IDictionary`2 System.Xml.IXmlNamespaceResolver::GetNamespacesInScope(System.Xml.XmlNamespaceScope) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.String System.Xml.XmlAsyncCheckReaderWithLineInfoNS::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReaderWithLineInfoNS_System_Xml_IXmlNamespaceResolver_LookupNamespace_m13CF9B8CA9E38A4840EF40A1476838D60A9B0F23 (XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629* __this, String_t* ___prefix0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlNamespaceResolver_6; String_t* L_1 = ___prefix0; NullCheck(L_0); String_t* L_2; L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.String System.Xml.XmlAsyncCheckReaderWithLineInfoNS::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckReaderWithLineInfoNS_System_Xml_IXmlNamespaceResolver_LookupPrefix_m46E767E367408BE7EA5EDB7881A5516D4BD19396 (XmlAsyncCheckReaderWithLineInfoNS_tAF2E0500872708A54144994961C7A5B47330A629* __this, String_t* ___namespaceName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlNamespaceResolver_6; String_t* L_1 = ___namespaceName0; NullCheck(L_0); String_t* L_2; L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(2 /* System.String System.Xml.IXmlNamespaceResolver::LookupPrefix(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_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 // System.Void System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckReaderWithLineInfoNSSchema__ctor_m717A0AA4ACD08B6E45E0594D00220CB14BAF2284 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; XmlAsyncCheckReaderWithLineInfoNS__ctor_m01293D26DE17269F9DC1E5668C460AB7D97205CC(__this, L_0, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; __this->___readerAsIXmlSchemaInfo_7 = ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___readerAsIXmlSchemaInfo_7), (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_1, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var))); return; } } // System.Xml.Schema.XmlSchemaValidity System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_Validity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_Validity_m12C67D84A14E11558964EDF8BD427EA42AB55116 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_IsDefault_mA8E4C105F21E3AD3695C44FF036555C305C10E76 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); bool L_1; L_1 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsDefault() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Boolean System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_IsNil() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_IsNil_m02F81120F8CD88E32A3E82A60EC21D7D6D8FDC37 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); bool L_1; L_1 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsNil() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_MemberType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_MemberType_mC800C871B70EAABAB7CD0527E07D97C82B83F421 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_1; L_1 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Xml.Schema.XmlSchemaType System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_SchemaType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_SchemaType_m27AF47A4E236D8CAC803366BE08A17E910B0BC2A (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_1; L_1 = InterfaceFuncInvoker0< XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Xml.Schema.XmlSchemaElement System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_SchemaElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_SchemaElement_m21A5734AE21C52202C7F357D964DD37F31A6B872 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_1; L_1 = InterfaceFuncInvoker0< XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* >::Invoke(5 /* System.Xml.Schema.XmlSchemaElement System.Xml.Schema.IXmlSchemaInfo::get_SchemaElement() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Xml.Schema.XmlSchemaAttribute System.Xml.XmlAsyncCheckReaderWithLineInfoNSSchema::System.Xml.Schema.IXmlSchemaInfo.get_SchemaAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* XmlAsyncCheckReaderWithLineInfoNSSchema_System_Xml_Schema_IXmlSchemaInfo_get_SchemaAttribute_m8BFF9032E2A3D2F29864E77B8F75393DCF972C79 (XmlAsyncCheckReaderWithLineInfoNSSchema_t8AB6445A111B644E0FE84CA11F40CEB1550BF08A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAsIXmlSchemaInfo_7; NullCheck(L_0); XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* L_1; L_1 = InterfaceFuncInvoker0< XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* >::Invoke(6 /* System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.IXmlSchemaInfo::get_SchemaAttribute() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_0); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlAsyncCheckWriter::.ctor(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter__ctor_mF26B7294DC235BD71761488DE271E04B72A4AA86 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var); Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = ((AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_StaticFields*)il2cpp_codegen_static_fields_for(AsyncHelper_t3F59EA9A10750F1E1FB0A75543AC61B1B2FB72BB_il2cpp_TypeInfo_var))->___DoneTask_0; __this->___lastTask_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastTask_2), (void*)L_0); XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1 = ___writer0; __this->___coreWriter_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___coreWriter_1), (void*)L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::CheckAsync() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = __this->___lastTask_2; NullCheck(L_0); bool L_1; L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831(L_0, NULL); if (L_1) { goto IL_001d; } } { String_t* L_2; L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF802447DCA401035D8E475710B790B206A9A34EF)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_3); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273_RuntimeMethod_var))); } IL_001d: { return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteStartDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteStartDocument_mF04C2EEA6FDB1F29EE035CB39D10609E5455485B (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_0); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteStartDocument(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteStartDocument_mB0C3E21FF2A58775ADEB89D9C02C5B191D56BB01 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, bool ___standalone0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; bool L_1 = ___standalone0; NullCheck(L_0); VirtualActionInvoker1< bool >::Invoke(6 /* System.Void System.Xml.XmlWriter::WriteStartDocument(System.Boolean) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteEndDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteEndDocument_mFB1BFBAB57D64164559AAAE5496139C47ADD3266 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(7 /* System.Void System.Xml.XmlWriter::WriteEndDocument() */, L_0); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteDocType_m1BDA8DC5AA4F7466F8FE235E68DE3D00713AF62D (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___name0; String_t* L_2 = ___pubid1; String_t* L_3 = ___sysid2; String_t* L_4 = ___subset3; NullCheck(L_0); VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, L_0, L_1, L_2, L_3, L_4); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteStartElement_m5383D5B76CF8B6C129303468262EE6E32985A2CA (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteEndElement_m6635AEE916A63B054CF143FD98E662A95242BA5F (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_0); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteFullEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteFullEndElement_mFE003682D4B23A167119D0E79053765FB5A5C6CA (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_0); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteStartAttribute_m137E48EC686134354E3E1D6760F523E32965FAEA (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteEndAttribute_m3B9A1AB6B44758B9EE6DEE8FFB34B2D61C2149F2 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_0); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteCData_m70B6C67B4AA5D75DDAB4E4CF072FF8DF597D3590 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___text0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___text0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteComment_m02242FB57C0E2C97A9177CCD86C21C14B67732DB (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___text0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___text0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteProcessingInstruction_m3690DDA6E6DE0E4D459AD45EB5B6FA8909EDC6BF (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___name0; String_t* L_2 = ___text1; NullCheck(L_0); VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteEntityRef_mBB4940725BC03C3BF5801BFF9CED399F05D76A49 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___name0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___name0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteCharEntity_m05933B9B6BCD50A7303F48F5E721CB408BCE5BD9 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; Il2CppChar L_1 = ___ch0; NullCheck(L_0); VirtualActionInvoker1< Il2CppChar >::Invoke(18 /* System.Void System.Xml.XmlWriter::WriteCharEntity(System.Char) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteWhitespace_m081A0C8B82285431803CE69115C11B61B195FEB1 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___ws0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___ws0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteString_m5ED3DABD137FE2C4A871FE51FCCE54F5B89FF574 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___text0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___text0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteSurrogateCharEntity_m2C698C4E94176B64DF8EF2E6AD31FC738C9413B0 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; Il2CppChar L_1 = ___lowChar0; Il2CppChar L_2 = ___highChar1; NullCheck(L_0); VirtualActionInvoker2< Il2CppChar, Il2CppChar >::Invoke(21 /* System.Void System.Xml.XmlWriter::WriteSurrogateCharEntity(System.Char,System.Char) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteChars_m3554B60413C847D25E863759B0B3102676717A1A (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(22 /* System.Void System.Xml.XmlWriter::WriteChars(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteRaw_mBA9F32E11D1C722EC110B51A253A79BA300ABAA1 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(23 /* System.Void System.Xml.XmlWriter::WriteRaw(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteRaw_mF173C8A42386908D332C2B4B2FE458601AC271EE (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___data0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___data0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteBase64_mAA313F6323FE77953471D846477562759D95E5C6 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(25 /* System.Void System.Xml.XmlWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteBinHex_m1D90F3B55E3F61EACCD50123EA1EA3F5DD013831 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(26 /* System.Void System.Xml.XmlWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Xml.WriteState System.Xml.XmlAsyncCheckWriter::get_WriteState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAsyncCheckWriter_get_WriteState_mB12FBC5C2CBBFF25F9E1DC2236ECD1FC3B5A1A22 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, L_0); return L_1; } } // System.Void System.Xml.XmlAsyncCheckWriter::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_Close_m93CCC89036CFAF7A14B6ACC2015BCCE63334767E (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, L_0); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_Flush_mEA26DA4EFD13155CEB9B6862FD6B6D05E3C9236A (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_0); return; } } // System.String System.Xml.XmlAsyncCheckWriter::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAsyncCheckWriter_LookupPrefix_mB26E20FECB9C03E28E64328E6F03392FE2B8B3FD (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___ns0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; 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); return L_2; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteValue_mCC257EE1C07F009CF5E3A74A60ECEA1DE9184F48 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, String_t* ___value0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; String_t* L_1 = ___value0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(31 /* System.Void System.Xml.XmlWriter::WriteValue(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteAttributes_mF5E39E0A94FB7FA9AFD82BAAF0504DF6CF71AF98 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, bool ___defattr1, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; bool L_2 = ___defattr1; NullCheck(L_0); VirtualActionInvoker2< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD*, bool >::Invoke(32 /* System.Void System.Xml.XmlWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::WriteNode(System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_WriteNode_m3BC61E736023D2A63FA236CE533F6C15AA7F2202 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, bool ___defattr1, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0; bool L_2 = ___defattr1; NullCheck(L_0); VirtualActionInvoker2< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD*, bool >::Invoke(33 /* System.Void System.Xml.XmlWriter::WriteNode(System.Xml.XmlReader,System.Boolean) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.XmlAsyncCheckWriter::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter_Dispose_m9FB52733C39DF5547853FED056CC4D323F1AAAA5 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, bool ___disposing0, const RuntimeMethod* method) { { XmlAsyncCheckWriter_CheckAsync_m5905D1468C2C2F9D17FFAC88C2DFA219DC4DF273(__this, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___coreWriter_1; NullCheck(L_0); XmlWriter_Dispose_mA0416A9B156E8271B9E129F3E91FEF6EE0A2B373(L_0, 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.XmlAutoDetectWriter::.ctor(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter__ctor_mDD91C4B1B4258E663D7C2881F7F53062857E0F8F (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings0, 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*)&XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989(__this, NULL); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___writerSettings0; NullCheck(L_0); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1; L_1 = XmlWriterSettings_Clone_m7D2132EF36D234189EFE3E94A7EAE6A9E94404B8(L_0, NULL); __this->___writerSettings_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___writerSettings_5), (void*)L_1); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = __this->___writerSettings_5; NullCheck(L_2); XmlWriterSettings_set_ReadOnly_m912EC500806EE683803491EED4796F954F57AB42_inline(L_2, (bool)1, NULL); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_4 = (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF*)il2cpp_codegen_object_new(XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF_il2cpp_TypeInfo_var); NullCheck(L_4); XmlEventCache__ctor_mBA3535680DEC05967B45C29EACDC95374C231C36(L_4, L_3, (bool)1, NULL); __this->___eventCache_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___eventCache_6), (void*)L_4); return; } } // System.Void System.Xml.XmlAutoDetectWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter__ctor_mBE391F3E538FC4006D2CDDA419CADB70323CDECC (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings1, const RuntimeMethod* method) { { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___writerSettings1; XmlAutoDetectWriter__ctor_mDD91C4B1B4258E663D7C2881F7F53062857E0F8F(__this, L_0, NULL); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___textWriter0; __this->___textWriter_7 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___textWriter_7), (void*)L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter__ctor_m49BFF556FF8509246492598A7C8DBE081795C7B7 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___strm0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings1, const RuntimeMethod* method) { { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___writerSettings1; XmlAutoDetectWriter__ctor_mDD91C4B1B4258E663D7C2881F7F53062857E0F8F(__this, L_0, NULL); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___strm0; __this->___strm_8 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___strm_8), (void*)L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteDocType_mB66BC3289221DB390360A5AEDE73F0DFC8AB9006 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___name0; String_t* L_2 = ___pubid1; String_t* L_3 = ___sysid2; String_t* L_4 = ___subset3; NullCheck(L_0); VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, L_0, L_1, L_2, L_3, L_4); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteStartElement_m155315E07D2C7EC0F3BA2BE26A09E8BB04F10F8E (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; if (L_0) { goto IL_0028; } } { String_t* L_1 = ___ns2; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if (L_2) { goto IL_0021; } } { String_t* L_3 = ___localName1; bool L_4; L_4 = XmlAutoDetectWriter_IsHtmlTag_mD043B271B38CD5C55CBD65580E92F25C3A02F5C1(L_3, NULL); if (!L_4) { goto IL_0021; } } { XmlAutoDetectWriter_CreateWrappedWriter_m3A1C515F1F51D9868C2C6E6B609F43A34FE4CD31(__this, 1, NULL); goto IL_0028; } IL_0021: { XmlAutoDetectWriter_CreateWrappedWriter_m3A1C515F1F51D9868C2C6E6B609F43A34FE4CD31(__this, 0, NULL); } IL_0028: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_5 = __this->___wrapped_3; String_t* L_6 = ___prefix0; String_t* L_7 = ___localName1; String_t* L_8 = ___ns2; NullCheck(L_5); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_5, L_6, L_7, L_8); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteStartAttribute_mFC64257D86F1A9E5ADF1FDBDE622BD0439EA1E74 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteEndAttribute_m1360EBF2388285E56BFBF71BB61D27198194335B (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_0); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteCData_mC2A3273985D491098CEBFB28AB97897EDCB51D51 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; bool L_1; L_1 = XmlAutoDetectWriter_TextBlockCreatesWriter_m39E5E4747352D31279AA83D2F1B09D479B3CF649(__this, L_0, NULL); if (!L_1) { goto IL_0016; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_2 = __this->___wrapped_3; String_t* L_3 = ___text0; NullCheck(L_2); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_2, L_3); return; } IL_0016: { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_4 = __this->___eventCache_6; String_t* L_5 = ___text0; NullCheck(L_4); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_4, L_5); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteComment_m969E987C85BC22C9DCC7440D2486D8EA1434D32A (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___text0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; if (L_0) { goto IL_0015; } } { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_1 = __this->___eventCache_6; String_t* L_2 = ___text0; NullCheck(L_1); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_1, L_2); return; } IL_0015: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; String_t* L_4 = ___text0; NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_3, L_4); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteProcessingInstruction_mDC1E8FFDF2E671B34E9EB10E903D0AA035CF2BA0 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; if (L_0) { goto IL_0016; } } { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_1 = __this->___eventCache_6; String_t* L_2 = ___name0; String_t* L_3 = ___text1; NullCheck(L_1); VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_1, L_2, L_3); return; } IL_0016: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_4 = __this->___wrapped_3; String_t* L_5 = ___name0; String_t* L_6 = ___text1; NullCheck(L_4); VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_4, L_5, L_6); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteWhitespace_m5215962550F88ADB2C2DDD3D137FFB2211B29970 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___ws0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; if (L_0) { goto IL_0015; } } { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_1 = __this->___eventCache_6; String_t* L_2 = ___ws0; NullCheck(L_1); VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_1, L_2); return; } IL_0015: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_3 = __this->___wrapped_3; String_t* L_4 = ___ws0; NullCheck(L_3); VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_3, L_4); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteString_m3B591D712094FAA9162D2AA7C37EDC473F7AD002 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; bool L_1; L_1 = XmlAutoDetectWriter_TextBlockCreatesWriter_m39E5E4747352D31279AA83D2F1B09D479B3CF649(__this, L_0, NULL); if (!L_1) { goto IL_0016; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_2 = __this->___wrapped_3; String_t* L_3 = ___text0; NullCheck(L_2); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_2, L_3); return; } IL_0016: { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_4 = __this->___eventCache_6; String_t* L_5 = ___text0; NullCheck(L_4); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_4, L_5); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteChars_m9FF0043376E8868C747A0B63984F5BFECCD21260 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; String_t* L_3; L_3 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, L_2, NULL); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteRaw_mA1E15F5B3D3978C40AC725F91DC4ED334A28B665 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; String_t* L_3; L_3 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, L_2, NULL); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteRaw_mBEC92988DDCD155971231780E64B2B9595A0DFCA (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___data0, const RuntimeMethod* method) { { String_t* L_0 = ___data0; bool L_1; L_1 = XmlAutoDetectWriter_TextBlockCreatesWriter_m39E5E4747352D31279AA83D2F1B09D479B3CF649(__this, L_0, NULL); if (!L_1) { goto IL_0016; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_2 = __this->___wrapped_3; String_t* L_3 = ___data0; NullCheck(L_2); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_2, L_3); return; } IL_0016: { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_4 = __this->___eventCache_6; String_t* L_5 = ___data0; NullCheck(L_4); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_4, L_5); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteEntityRef_m90DFF3A1CEE87512BA292E4439B7AE08215AF7FB (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___name0, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___name0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteCharEntity_m71661F0E5FC5099A5B51C40D5503CA8DBA76161B (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; Il2CppChar L_1 = ___ch0; NullCheck(L_0); VirtualActionInvoker1< Il2CppChar >::Invoke(18 /* System.Void System.Xml.XmlWriter::WriteCharEntity(System.Char) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteSurrogateCharEntity_m09222DB5C666A8D60D07B0AB91F08F384820F532 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; Il2CppChar L_1 = ___lowChar0; Il2CppChar L_2 = ___highChar1; NullCheck(L_0); VirtualActionInvoker2< Il2CppChar, Il2CppChar >::Invoke(21 /* System.Void System.Xml.XmlWriter::WriteSurrogateCharEntity(System.Char,System.Char) */, L_0, L_1, L_2); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteBase64_m475C1023BDF2B9894F8AC4B25A0DD0F19BA603D2 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(25 /* System.Void System.Xml.XmlWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteBinHex_m1A4411BCDD43DEA7ACD327DF55EC72257729F30A (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(26 /* System.Void System.Xml.XmlWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_Close_mE2F26ABE308370C6BE5FE164884CDF191B894AF2 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, L_0); return; } } // System.Void System.Xml.XmlAutoDetectWriter::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_Flush_mDD7666D00728EEC764D0C983AB2266B89A9F54C9 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_0); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteValue_m7847A3317DC9EE8A1B92CA608874C0153C327AF8 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___value0, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___value0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(31 /* System.Void System.Xml.XmlWriter::WriteValue(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_set_NamespaceResolver_m4A832AA7C80520519A47E8C408F653EFCA8CC84C (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; ((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)__this)->___resolver_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)__this)->___resolver_2), (void*)L_0); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_1 = __this->___wrapped_3; if (L_1) { goto IL_001c; } } { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_2 = __this->___eventCache_6; RuntimeObject* L_3 = ___value0; NullCheck(L_2); VirtualActionInvoker1< RuntimeObject* >::Invoke(35 /* System.Void System.Xml.XmlRawWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) */, L_2, L_3); return; } IL_001c: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_4 = __this->___wrapped_3; RuntimeObject* L_5 = ___value0; NullCheck(L_4); VirtualActionInvoker1< RuntimeObject* >::Invoke(35 /* System.Void System.Xml.XmlRawWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) */, L_4, L_5); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteXmlDeclaration_mB728852847CD9B75AFF4F788EB9049912DA1B3FF (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, int32_t ___standalone0, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; int32_t L_1 = ___standalone0; NullCheck(L_0); VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteXmlDeclaration_mE337FBA262FF901E56C051B8546E520A7020A3EE (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___xmldecl0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(37 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_StartElementContent_mBF443BEE9C1009C22E43D686013B17FB231CDE20 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(38 /* System.Void System.Xml.XmlRawWriter::StartElementContent() */, L_0); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteEndElement_m1CFDBAF2EFAB714FE8025786EE38DD243E44DC71 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(40 /* System.Void System.Xml.XmlRawWriter::WriteEndElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteFullEndElement_m07F88E47329FC1D11F04650F2090790BC5D5B355 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; NullCheck(L_0); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(41 /* System.Void System.Xml.XmlRawWriter::WriteFullEndElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteNamespaceDeclaration(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteNamespaceDeclaration_m497754540C2362C7A6F237ABAECB6BA53FB2573A (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; String_t* L_2 = ___ns1; NullCheck(L_0); VirtualActionInvoker2< String_t*, String_t* >::Invoke(42 /* System.Void System.Xml.XmlRawWriter::WriteNamespaceDeclaration(System.String,System.String) */, L_0, L_1, L_2); return; } } // System.Boolean System.Xml.XmlAutoDetectWriter::get_SupportsNamespaceDeclarationInChunks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAutoDetectWriter_get_SupportsNamespaceDeclarationInChunks_mEF6F32ECF4D1B7FFDA1821C47DE5E2680A0535F0 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlRawWriter::get_SupportsNamespaceDeclarationInChunks() */, L_0); return L_1; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteStartNamespaceDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteStartNamespaceDeclaration_m722B0C56A675120B8EF08F6588C27F30F9679C66 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___prefix0, const RuntimeMethod* method) { { XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D(__this, 0, NULL); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; String_t* L_1 = ___prefix0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(44 /* System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlAutoDetectWriter::WriteEndNamespaceDeclaration() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_WriteEndNamespaceDeclaration_m33024928C1612A46DFFEF265418D3E17C9C84F7C (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() */, L_0); return; } } // System.Boolean System.Xml.XmlAutoDetectWriter::IsHtmlTag(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAutoDetectWriter_IsHtmlTag_mD043B271B38CD5C55CBD65580E92F25C3A02F5C1 (String_t* ___tagName0, const RuntimeMethod* method) { { String_t* L_0 = ___tagName0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_000b; } } { return (bool)0; } IL_000b: { String_t* L_2 = ___tagName0; NullCheck(L_2); Il2CppChar L_3; L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL); if ((((int32_t)L_3) == ((int32_t)((int32_t)72)))) { goto IL_0023; } } { String_t* L_4 = ___tagName0; NullCheck(L_4); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 0, NULL); if ((((int32_t)L_5) == ((int32_t)((int32_t)104)))) { goto IL_0023; } } { return (bool)0; } IL_0023: { String_t* L_6 = ___tagName0; NullCheck(L_6); Il2CppChar L_7; L_7 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, 1, NULL); if ((((int32_t)L_7) == ((int32_t)((int32_t)84)))) { goto IL_003b; } } { String_t* L_8 = ___tagName0; NullCheck(L_8); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, 1, NULL); if ((((int32_t)L_9) == ((int32_t)((int32_t)116)))) { goto IL_003b; } } { return (bool)0; } IL_003b: { String_t* L_10 = ___tagName0; NullCheck(L_10); Il2CppChar L_11; L_11 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, 2, NULL); if ((((int32_t)L_11) == ((int32_t)((int32_t)77)))) { goto IL_0053; } } { String_t* L_12 = ___tagName0; NullCheck(L_12); Il2CppChar L_13; L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, 2, NULL); if ((((int32_t)L_13) == ((int32_t)((int32_t)109)))) { goto IL_0053; } } { return (bool)0; } IL_0053: { String_t* L_14 = ___tagName0; NullCheck(L_14); Il2CppChar L_15; L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, 3, NULL); if ((((int32_t)L_15) == ((int32_t)((int32_t)76)))) { goto IL_006b; } } { String_t* L_16 = ___tagName0; NullCheck(L_16); Il2CppChar L_17; L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_16, 3, NULL); if ((((int32_t)L_17) == ((int32_t)((int32_t)108)))) { goto IL_006b; } } { return (bool)0; } IL_006b: { return (bool)1; } } // System.Void System.Xml.XmlAutoDetectWriter::EnsureWrappedWriter(System.Xml.XmlOutputMethod) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_EnsureWrappedWriter_m1CBB0C907CF20DBB655B7BF5710D90CF2745E28D (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, int32_t ___outMethod0, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; if (L_0) { goto IL_000f; } } { int32_t L_1 = ___outMethod0; XmlAutoDetectWriter_CreateWrappedWriter_m3A1C515F1F51D9868C2C6E6B609F43A34FE4CD31(__this, L_1, NULL); } IL_000f: { return; } } // System.Boolean System.Xml.XmlAutoDetectWriter::TextBlockCreatesWriter(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAutoDetectWriter_TextBlockCreatesWriter_m39E5E4747352D31279AA83D2F1B09D479B3CF649 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, String_t* ___textBlock0, const RuntimeMethod* method) { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 V_0; memset((&V_0), 0, sizeof(V_0)); { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___wrapped_3; if (L_0) { goto IL_0021; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_1; L_1 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL); V_0 = L_1; String_t* L_2 = ___textBlock0; bool L_3; L_3 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490((&V_0), L_2, NULL); if (!L_3) { goto IL_001a; } } { return (bool)0; } IL_001a: { XmlAutoDetectWriter_CreateWrappedWriter_m3A1C515F1F51D9868C2C6E6B609F43A34FE4CD31(__this, 0, NULL); } IL_0021: { return (bool)1; } } // System.Void System.Xml.XmlAutoDetectWriter::CreateWrappedWriter(System.Xml.XmlOutputMethod) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter_CreateWrappedWriter_m3A1C515F1F51D9868C2C6E6B609F43A34FE4CD31 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, int32_t ___outMethod0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = __this->___writerSettings_5; NullCheck(L_0); XmlWriterSettings_set_ReadOnly_m912EC500806EE683803491EED4796F954F57AB42_inline(L_0, (bool)0, NULL); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = __this->___writerSettings_5; int32_t L_2 = ___outMethod0; NullCheck(L_1); XmlWriterSettings_set_OutputMethod_m8A74B5EE11DD5C1D00D97B896E36AA504C142837_inline(L_1, L_2, NULL); int32_t L_3 = ___outMethod0; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0036; } } { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_4 = __this->___writerSettings_5; NullCheck(L_4); int32_t L_5; L_5 = XmlWriterSettings_get_IndentInternal_m3180E0936B1C9CB8252AE222C1D17BB1A0448C22_inline(L_4, NULL); if ((!(((uint32_t)L_5) == ((uint32_t)(-1))))) { goto IL_0036; } } { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_6 = __this->___writerSettings_5; NullCheck(L_6); XmlWriterSettings_set_Indent_m4560606B33CB7EF5DEE0F5B50A81AC8E67622661(L_6, (bool)1, NULL); } IL_0036: { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_7 = __this->___writerSettings_5; NullCheck(L_7); XmlWriterSettings_set_ReadOnly_m912EC500806EE683803491EED4796F954F57AB42_inline(L_7, (bool)1, NULL); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_8 = __this->___textWriter_7; if (!L_8) { goto IL_006d; } } { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___textWriter_7; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_10 = __this->___writerSettings_5; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11; L_11 = XmlWriter_Create_m6CA81400C565A5B8E379150404E136B42B4F69A9(L_9, L_10, NULL); NullCheck(((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645*)CastclassClass((RuntimeObject*)L_11, XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_12; L_12 = XmlWellFormedWriter_get_RawWriter_m214811761EBBCB44F46CF8C3590C4611CFE134CA_inline(((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645*)CastclassClass((RuntimeObject*)L_11, XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)), NULL); __this->___wrapped_3 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___wrapped_3), (void*)L_12); goto IL_008e; } IL_006d: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_13 = __this->___strm_8; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_14 = __this->___writerSettings_5; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_15; L_15 = XmlWriter_Create_mF8D6A7AF4B53BDB0896D95E0A6D9ECE6042C3856(L_13, L_14, NULL); NullCheck(((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645*)CastclassClass((RuntimeObject*)L_15, XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))); XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_16; L_16 = XmlWellFormedWriter_get_RawWriter_m214811761EBBCB44F46CF8C3590C4611CFE134CA_inline(((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645*)CastclassClass((RuntimeObject*)L_15, XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)), NULL); __this->___wrapped_3 = L_16; Il2CppCodeGenWriteBarrier((void**)(&__this->___wrapped_3), (void*)L_16); } IL_008e: { XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_17 = __this->___eventCache_6; NullCheck(L_17); XmlEventCache_EndEvents_m14930E127C0BC8C9139CC572BC1238721698075A(L_17, NULL); XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* L_18 = __this->___eventCache_6; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_19 = __this->___wrapped_3; NullCheck(L_18); XmlEventCache_EventsToWriter_m80E785FE11C18BA12E44016345E1F26273F4E361(L_18, L_19, NULL); OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* L_20 = __this->___onRemove_4; if (!L_20) { goto IL_00c3; } } { OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* L_21 = __this->___onRemove_4; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_22 = __this->___wrapped_3; NullCheck(L_21); OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_inline(L_21, L_22, NULL); } IL_00c3: { 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.XmlEncodedRawTextWriter::.ctor(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_m3D7E707E2F95076DC80511A09C53AD5BCD0F6CDB (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3); s_Il2CppMethodInitialized = true; } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0; L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL); __this->___xmlCharType_7 = L_0; Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_7))->___charProperties_2), (void*)NULL); __this->___bufPos_8 = 1; __this->___textPos_9 = 1; __this->___bufLen_13 = ((int32_t)6144); XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989(__this, NULL); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings0; NullCheck(L_1); bool L_2; L_2 = XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline(L_1, NULL); __this->___useAsync_3 = L_2; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_3 = ___settings0; NullCheck(L_3); int32_t L_4; L_4 = XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0_inline(L_3, NULL); __this->___newLineHandling_26 = L_4; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_5 = ___settings0; NullCheck(L_5); bool L_6; L_6 = XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF_inline(L_5, NULL); __this->___omitXmlDeclaration_28 = L_6; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_7 = ___settings0; NullCheck(L_7); String_t* L_8; L_8 = XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9_inline(L_7, NULL); __this->___newLineChars_29 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___newLineChars_29), (void*)L_8); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_9 = ___settings0; NullCheck(L_9); bool L_10; L_10 = XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline(L_9, NULL); __this->___checkCharacters_30 = L_10; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_11 = ___settings0; NullCheck(L_11); bool L_12; L_12 = XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926_inline(L_11, NULL); __this->___closeOutput_27 = L_12; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_13 = ___settings0; NullCheck(L_13); int32_t L_14; L_14 = XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline(L_13, NULL); __this->___standalone_31 = L_14; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_15 = ___settings0; NullCheck(L_15); int32_t L_16; L_16 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(L_15, NULL); __this->___outputMethod_32 = L_16; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_17 = ___settings0; NullCheck(L_17); bool L_18; L_18 = XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817_inline(L_17, NULL); __this->___mergeCDataSections_34 = L_18; bool L_19 = __this->___checkCharacters_30; if (!L_19) { goto IL_00b8; } } { int32_t L_20 = __this->___newLineHandling_26; if (L_20) { goto IL_00b8; } } { String_t* L_21 = __this->___newLineChars_29; XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A(__this, L_21, _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3, (bool)0, NULL); } IL_00b8: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_mF6EBA0A44503EE7400D3901E059BDFEB8110B205 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings1; XmlEncodedRawTextWriter__ctor_m3D7E707E2F95076DC80511A09C53AD5BCD0F6CDB(__this, L_0, NULL); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer0; __this->___writer_20 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___writer_20), (void*)L_1); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2 = ___writer0; NullCheck(L_2); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3; L_3 = VirtualFuncInvoker0< Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* >::Invoke(11 /* System.Text.Encoding System.IO.TextWriter::get_Encoding() */, L_2); __this->___encoding_6 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_6), (void*)L_3); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_4 = ___settings1; NullCheck(L_4); bool L_5; L_5 = XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline(L_4, NULL); if (!L_5) { goto IL_002d; } } { __this->___bufLen_13 = ((int32_t)65536); } IL_002d: { int32_t L_6 = __this->___bufLen_13; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_6, ((int32_t)32)))); __this->___bufChars_18 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___bufChars_18), (void*)L_7); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_8 = ___settings1; NullCheck(L_8); bool L_9; L_9 = XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline(L_8, NULL); if (!L_9) { goto IL_005c; } } { int32_t L_10 = __this->___standalone_31; VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, __this, L_10); __this->___autoXmlDeclaration_33 = (bool)1; } IL_005c: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_mEDAEC401E6AB69FC8728E0217038DFEBE2C3F564 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL; { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings1; XmlEncodedRawTextWriter__ctor_m3D7E707E2F95076DC80511A09C53AD5BCD0F6CDB(__this, L_0, NULL); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___stream0; __this->___stream_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___stream_5), (void*)L_1); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1; NullCheck(L_2); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3; L_3 = XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline(L_2, NULL); __this->___encoding_6 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_6), (void*)L_3); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_4 = ___settings1; NullCheck(L_4); bool L_5; L_5 = XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline(L_4, NULL); if (!L_5) { goto IL_002d; } } { __this->___bufLen_13 = ((int32_t)65536); } IL_002d: { int32_t L_6 = __this->___bufLen_13; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_6, ((int32_t)32)))); __this->___bufChars_18 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___bufChars_18), (void*)L_7); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->___bufChars_18; NullCheck(L_8); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))); __this->___bufBytes_4 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___bufBytes_4), (void*)L_9); __this->___bufBytesUsed_17 = 0; __this->___trackTextContent_21 = (bool)1; __this->___inTextContent_22 = (bool)0; __this->___lastMarkPos_23 = 0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64)); __this->___textContentMarks_24 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___textContentMarks_24), (void*)L_10); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_11 = __this->___textContentMarks_24; NullCheck(L_11); (L_11)->SetAt(static_cast(0), (int32_t)1); CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* L_12 = (CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1*)il2cpp_codegen_object_new(CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1_il2cpp_TypeInfo_var); NullCheck(L_12); CharEntityEncoderFallback__ctor_mD61861CAC7602A03E97260E095E68090096838C6(L_12, NULL); __this->___charEntityFallback_25 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___charEntityFallback_25), (void*)L_12); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_13 = ___settings1; NullCheck(L_13); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14; L_14 = XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline(L_13, NULL); NullCheck(L_14); RuntimeObject* L_15; L_15 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* System.Object System.Text.Encoding::Clone() */, L_14); __this->___encoding_6 = ((Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)CastclassClass((RuntimeObject*)L_15, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_6), (void*)((Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)CastclassClass((RuntimeObject*)L_15, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_il2cpp_TypeInfo_var))); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_16 = __this->___encoding_6; CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* L_17 = __this->___charEntityFallback_25; NullCheck(L_16); Encoding_set_EncoderFallback_m479A67230C286D29DAC4A9A93074708666FD483D(L_16, L_17, NULL); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_18 = __this->___encoding_6; NullCheck(L_18); Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* L_19; L_19 = VirtualFuncInvoker0< Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* >::Invoke(32 /* System.Text.Encoder System.Text.Encoding::GetEncoder() */, L_18); __this->___encoder_19 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->___encoder_19), (void*)L_19); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_20 = ___stream0; NullCheck(L_20); bool L_21; L_21 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_20); if (!L_21) { goto IL_00d9; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_22 = ___stream0; NullCheck(L_22); int64_t L_23; L_23 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_22); if (L_23) { goto IL_00f9; } } IL_00d9: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_24 = __this->___encoding_6; NullCheck(L_24); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25; L_25 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(6 /* System.Byte[] System.Text.Encoding::GetPreamble() */, L_24); V_0 = L_25; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = V_0; NullCheck(L_26); if (!(((RuntimeArray*)L_26)->max_length)) { goto IL_00f9; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_27 = __this->___stream_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = V_0; NullCheck(L_29); NullCheck(L_27); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_27, L_28, 0, ((int32_t)(((RuntimeArray*)L_29)->max_length))); } IL_00f9: { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_30 = ___settings1; NullCheck(L_30); bool L_31; L_31 = XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline(L_30, NULL); if (!L_31) { goto IL_0114; } } { int32_t L_32 = __this->___standalone_31; VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, __this, L_32); __this->___autoXmlDeclaration_33 = (bool)1; } IL_0114: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteXmlDeclaration_m3A3E97BE015725DB905E15C6621139112126A776 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, int32_t ___standalone0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C250646ACB5EAA28E079007EF6B9BECFDAEDC6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral36D06DCF7061DEC1E8DF4C9D2BB8EB53DBD3087E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C9D5EB3A2133DCF493D42AFE0769A5D81E10AF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB968B651B32BD07EAAB4CB96683980AF16C47C0B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331); s_Il2CppMethodInitialized = true; } XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B10_0 = NULL; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B9_0 = NULL; String_t* G_B11_0 = NULL; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B11_1 = NULL; { bool L_0 = __this->___omitXmlDeclaration_28; if (L_0) { goto IL_0096; } } { bool L_1 = __this->___autoXmlDeclaration_33; if (L_1) { goto IL_0096; } } { bool L_2 = __this->___trackTextContent_21; if (!L_2) { goto IL_002d; } } { bool L_3 = __this->___inTextContent_22; if (!L_3) { goto IL_002d; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_002d: { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteralB968B651B32BD07EAAB4CB96683980AF16C47C0B, NULL); XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11, NULL); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4 = __this->___encoding_6; if (!L_4) { goto IL_0067; } } { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral36D06DCF7061DEC1E8DF4C9D2BB8EB53DBD3087E, NULL); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5 = __this->___encoding_6; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_5); XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_6, NULL); } IL_0067: { int32_t L_7 = ___standalone0; if (!L_7) { goto IL_008b; } } { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral1C250646ACB5EAA28E079007EF6B9BECFDAEDC6E, NULL); int32_t L_8 = ___standalone0; G_B9_0 = __this; if ((((int32_t)L_8) == ((int32_t)1))) { G_B10_0 = __this; goto IL_0081; } } { G_B11_0 = _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49; G_B11_1 = G_B9_0; goto IL_0086; } IL_0081: { G_B11_0 = _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331; G_B11_1 = G_B10_0; } IL_0086: { NullCheck(G_B11_1); XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(G_B11_1, G_B11_0, NULL); } IL_008b: { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral4C9D5EB3A2133DCF493D42AFE0769A5D81E10AF1, NULL); } IL_0096: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteXmlDeclaration_m3AB1671C659F299B4719817F021E45D5D7DB748B (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->___omitXmlDeclaration_28; if (L_0) { goto IL_001c; } } { bool L_1 = __this->___autoXmlDeclaration_33; if (L_1) { goto IL_001c; } } { String_t* L_2 = ___xmldecl0; VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, __this, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, L_2); } IL_001c: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteDocType_mDBEDCAB711092E22DFE5969871777DD43C3939EA (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7721A48ACA2DB6CF7BA1F50E38BE38587D4927BA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88E0DBECA18651C0DE1E09C9B180E8C851A4F92B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3782EC504B73600A2DA83B623313BF6EC38CAE3); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B, NULL); String_t* L_2 = ___name0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_2, NULL); String_t* L_3 = ___pubid1; if (!L_3) { goto IL_006f; } } { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral7721A48ACA2DB6CF7BA1F50E38BE38587D4927BA, NULL); String_t* L_4 = ___pubid1; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_4, NULL); XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral88E0DBECA18651C0DE1E09C9B180E8C851A4F92B, NULL); String_t* L_5 = ___sysid2; if (!L_5) { goto IL_0053; } } { String_t* L_6 = ___sysid2; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_6, NULL); } IL_0053: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = __this->___bufChars_18; int32_t L_8 = __this->___bufPos_8; V_0 = L_8; int32_t L_9 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_9, 1)); int32_t L_10 = V_0; NullCheck(L_7); (L_7)->SetAt(static_cast(L_10), (Il2CppChar)((int32_t)34)); goto IL_00ba; } IL_006f: { String_t* L_11 = ___sysid2; if (!L_11) { goto IL_00a0; } } { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteralF3782EC504B73600A2DA83B623313BF6EC38CAE3, NULL); String_t* L_12 = ___sysid2; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_12, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = __this->___bufChars_18; int32_t L_14 = __this->___bufPos_8; V_0 = L_14; int32_t L_15 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_15, 1)); int32_t L_16 = V_0; NullCheck(L_13); (L_13)->SetAt(static_cast(L_16), (Il2CppChar)((int32_t)34)); goto IL_00ba; } IL_00a0: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = __this->___bufChars_18; int32_t L_18 = __this->___bufPos_8; V_0 = L_18; int32_t L_19 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_19, 1)); int32_t L_20 = V_0; NullCheck(L_17); (L_17)->SetAt(static_cast(L_20), (Il2CppChar)((int32_t)32)); } IL_00ba: { String_t* L_21 = ___subset3; if (!L_21) { goto IL_00fa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = __this->___bufChars_18; int32_t L_23 = __this->___bufPos_8; V_0 = L_23; int32_t L_24 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_24, 1)); int32_t L_25 = V_0; NullCheck(L_22); (L_22)->SetAt(static_cast(L_25), (Il2CppChar)((int32_t)91)); String_t* L_26 = ___subset3; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_26, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = __this->___bufChars_18; int32_t L_28 = __this->___bufPos_8; V_0 = L_28; int32_t L_29 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_29, 1)); int32_t L_30 = V_0; NullCheck(L_27); (L_27)->SetAt(static_cast(L_30), (Il2CppChar)((int32_t)93)); } IL_00fa: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = __this->___bufChars_18; int32_t L_32 = __this->___bufPos_8; V_0 = L_32; int32_t L_33 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_33, 1)); int32_t L_34 = V_0; NullCheck(L_31); (L_31)->SetAt(static_cast(L_34), (Il2CppChar)((int32_t)62)); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteStartElement_mCDCE55482129A24BCC95726DE611FB58CB1632EB (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)60)); String_t* L_6 = ___prefix0; if (!L_6) { goto IL_005d; } } { String_t* L_7 = ___prefix0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); if (!L_8) { goto IL_005d; } } { String_t* L_9 = ___prefix0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_9, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___bufChars_18; int32_t L_11 = __this->___bufPos_8; V_0 = L_11; int32_t L_12 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_12, 1)); int32_t L_13 = V_0; NullCheck(L_10); (L_10)->SetAt(static_cast(L_13), (Il2CppChar)((int32_t)58)); } IL_005d: { String_t* L_14 = ___localName1; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_14, NULL); int32_t L_15 = __this->___bufPos_8; __this->___attrEndPos_12 = L_15; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_StartElementContent_mD809F4166E242A11AD499962421E5883D322F44B (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; int32_t L_1 = __this->___bufPos_8; V_0 = L_1; int32_t L_2 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1)); int32_t L_3 = V_0; NullCheck(L_0); (L_0)->SetAt(static_cast(L_3), (Il2CppChar)((int32_t)62)); int32_t L_4 = __this->___bufPos_8; __this->___contentPos_10 = L_4; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteEndElement_m2039FDBAFF31B7BF9497D232724F9FB07ABDFC81 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { int32_t L_2 = __this->___contentPos_10; int32_t L_3 = __this->___bufPos_8; if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_00aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___bufChars_18; int32_t L_5 = __this->___bufPos_8; V_0 = L_5; int32_t L_6 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_6, 1)); int32_t L_7 = V_0; NullCheck(L_4); (L_4)->SetAt(static_cast(L_7), (Il2CppChar)((int32_t)60)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->___bufChars_18; int32_t L_9 = __this->___bufPos_8; V_0 = L_9; int32_t L_10 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_10, 1)); int32_t L_11 = V_0; NullCheck(L_8); (L_8)->SetAt(static_cast(L_11), (Il2CppChar)((int32_t)47)); String_t* L_12 = ___prefix0; if (!L_12) { goto IL_0088; } } { String_t* L_13 = ___prefix0; NullCheck(L_13); int32_t L_14; L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL); if (!L_14) { goto IL_0088; } } { String_t* L_15 = ___prefix0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_15, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = __this->___bufChars_18; int32_t L_17 = __this->___bufPos_8; V_0 = L_17; int32_t L_18 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_18, 1)); int32_t L_19 = V_0; NullCheck(L_16); (L_16)->SetAt(static_cast(L_19), (Il2CppChar)((int32_t)58)); } IL_0088: { String_t* L_20 = ___localName1; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_20, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = __this->___bufChars_18; int32_t L_22 = __this->___bufPos_8; V_0 = L_22; int32_t L_23 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_23, 1)); int32_t L_24 = V_0; NullCheck(L_21); (L_21)->SetAt(static_cast(L_24), (Il2CppChar)((int32_t)62)); return; } IL_00aa: { int32_t L_25 = __this->___bufPos_8; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_subtract(L_25, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = __this->___bufChars_18; int32_t L_27 = __this->___bufPos_8; V_0 = L_27; int32_t L_28 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_28, 1)); int32_t L_29 = V_0; NullCheck(L_26); (L_26)->SetAt(static_cast(L_29), (Il2CppChar)((int32_t)32)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = __this->___bufChars_18; int32_t L_31 = __this->___bufPos_8; V_0 = L_31; int32_t L_32 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_32, 1)); int32_t L_33 = V_0; NullCheck(L_30); (L_30)->SetAt(static_cast(L_33), (Il2CppChar)((int32_t)47)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = __this->___bufChars_18; int32_t L_35 = __this->___bufPos_8; V_0 = L_35; int32_t L_36 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_36, 1)); int32_t L_37 = V_0; NullCheck(L_34); (L_34)->SetAt(static_cast(L_37), (Il2CppChar)((int32_t)62)); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteFullEndElement_m3F8608DE81F8F61E9990264D050AE6579BBD6FE5 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)60)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___bufChars_18; int32_t L_7 = __this->___bufPos_8; V_0 = L_7; int32_t L_8 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_8, 1)); int32_t L_9 = V_0; NullCheck(L_6); (L_6)->SetAt(static_cast(L_9), (Il2CppChar)((int32_t)47)); String_t* L_10 = ___prefix0; if (!L_10) { goto IL_0077; } } { String_t* L_11 = ___prefix0; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); if (!L_12) { goto IL_0077; } } { String_t* L_13 = ___prefix0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_13, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = __this->___bufChars_18; int32_t L_15 = __this->___bufPos_8; V_0 = L_15; int32_t L_16 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_16, 1)); int32_t L_17 = V_0; NullCheck(L_14); (L_14)->SetAt(static_cast(L_17), (Il2CppChar)((int32_t)58)); } IL_0077: { String_t* L_18 = ___localName1; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_18, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___bufChars_18; int32_t L_20 = __this->___bufPos_8; V_0 = L_20; int32_t L_21 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_21, 1)); int32_t L_22 = V_0; NullCheck(L_19); (L_19)->SetAt(static_cast(L_22), (Il2CppChar)((int32_t)62)); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteStartAttribute_mDD0E306F666655493413D9CECDD048D53711CCFA (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { int32_t L_2 = __this->___attrEndPos_12; int32_t L_3 = __this->___bufPos_8; if ((!(((uint32_t)L_2) == ((uint32_t)L_3)))) { goto IL_003f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___bufChars_18; int32_t L_5 = __this->___bufPos_8; V_0 = L_5; int32_t L_6 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_6, 1)); int32_t L_7 = V_0; NullCheck(L_4); (L_4)->SetAt(static_cast(L_7), (Il2CppChar)((int32_t)32)); } IL_003f: { String_t* L_8 = ___prefix0; if (!L_8) { goto IL_006c; } } { String_t* L_9 = ___prefix0; NullCheck(L_9); int32_t L_10; L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL); if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_006c; } } { String_t* L_11 = ___prefix0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_11, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = __this->___bufChars_18; int32_t L_13 = __this->___bufPos_8; V_0 = L_13; int32_t L_14 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_14, 1)); int32_t L_15 = V_0; NullCheck(L_12); (L_12)->SetAt(static_cast(L_15), (Il2CppChar)((int32_t)58)); } IL_006c: { String_t* L_16 = ___localName1; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_16, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = __this->___bufChars_18; int32_t L_18 = __this->___bufPos_8; V_0 = L_18; int32_t L_19 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_19, 1)); int32_t L_20 = V_0; NullCheck(L_17); (L_17)->SetAt(static_cast(L_20), (Il2CppChar)((int32_t)61)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = __this->___bufChars_18; int32_t L_22 = __this->___bufPos_8; V_0 = L_22; int32_t L_23 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_23, 1)); int32_t L_24 = V_0; NullCheck(L_21); (L_21)->SetAt(static_cast(L_24), (Il2CppChar)((int32_t)34)); __this->___inAttributeValue_16 = (bool)1; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteEndAttribute_mDD67581403248AD334B1C3424BA4D58229FC7C4E (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)34)); __this->___inAttributeValue_16 = (bool)0; int32_t L_6 = __this->___bufPos_8; __this->___attrEndPos_12 = L_6; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteNamespaceDeclaration(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteNamespaceDeclaration_m167EB508D2295EEF29742E22C757ABBE7BEE9CE7 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, String_t* ___namespaceName1, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; VirtualActionInvoker1< String_t* >::Invoke(44 /* System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) */, __this, L_0); String_t* L_1 = ___namespaceName1; VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_1); VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() */, __this); return; } } // System.Boolean System.Xml.XmlEncodedRawTextWriter::get_SupportsNamespaceDeclarationInChunks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEncodedRawTextWriter_get_SupportsNamespaceDeclarationInChunks_mC5BB9DF550B44616DF2FE36CD7060C1DBC2016E7 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteStartNamespaceDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteStartNamespaceDeclaration_mA3DDCF1972064B692A5EFE032D2D060369A8281B (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___prefix0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7445C16916FA3BA29CF130D3BC44506627A580F8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7BB4816F511937863E42D9A34BAB32B43210AE7); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { String_t* L_2 = ___prefix0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (L_3) { goto IL_002c; } } { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteral7445C16916FA3BA29CF130D3BC44506627A580F8, NULL); goto IL_0072; } IL_002c: { XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, _stringLiteralD7BB4816F511937863E42D9A34BAB32B43210AE7, NULL); String_t* L_4 = ___prefix0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_4, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = __this->___bufChars_18; int32_t L_6 = __this->___bufPos_8; V_0 = L_6; int32_t L_7 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_7, 1)); int32_t L_8 = V_0; NullCheck(L_5); (L_5)->SetAt(static_cast(L_8), (Il2CppChar)((int32_t)61)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___bufChars_18; int32_t L_10 = __this->___bufPos_8; V_0 = L_10; int32_t L_11 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_11, 1)); int32_t L_12 = V_0; NullCheck(L_9); (L_9)->SetAt(static_cast(L_12), (Il2CppChar)((int32_t)34)); } IL_0072: { __this->___inAttributeValue_16 = (bool)1; bool L_13 = __this->___trackTextContent_21; if (!L_13) { goto IL_0090; } } { bool L_14 = __this->___inTextContent_22; if (L_14) { goto IL_0090; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)1, NULL); } IL_0090: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteEndNamespaceDeclaration() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteEndNamespaceDeclaration_mEDB5286B4AAE23936DFD9738F72221435AA24D31 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { __this->___inAttributeValue_16 = (bool)0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)34)); int32_t L_6 = __this->___bufPos_8; __this->___attrEndPos_12 = L_6; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCData_m2FD4BC6708C8A44B301A07F379CE77704EEC3849 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { bool L_2 = __this->___mergeCDataSections_34; if (!L_2) { goto IL_0040; } } { int32_t L_3 = __this->___bufPos_8; int32_t L_4 = __this->___cdataPos_11; if ((!(((uint32_t)L_3) == ((uint32_t)L_4)))) { goto IL_0040; } } { int32_t L_5 = __this->___bufPos_8; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_subtract(L_5, 3)); goto IL_012a; } IL_0040: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___bufChars_18; int32_t L_7 = __this->___bufPos_8; V_0 = L_7; int32_t L_8 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_8, 1)); int32_t L_9 = V_0; NullCheck(L_6); (L_6)->SetAt(static_cast(L_9), (Il2CppChar)((int32_t)60)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___bufChars_18; int32_t L_11 = __this->___bufPos_8; V_0 = L_11; int32_t L_12 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_12, 1)); int32_t L_13 = V_0; NullCheck(L_10); (L_10)->SetAt(static_cast(L_13), (Il2CppChar)((int32_t)33)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = __this->___bufChars_18; int32_t L_15 = __this->___bufPos_8; V_0 = L_15; int32_t L_16 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_16, 1)); int32_t L_17 = V_0; NullCheck(L_14); (L_14)->SetAt(static_cast(L_17), (Il2CppChar)((int32_t)91)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = __this->___bufChars_18; int32_t L_19 = __this->___bufPos_8; V_0 = L_19; int32_t L_20 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_20, 1)); int32_t L_21 = V_0; NullCheck(L_18); (L_18)->SetAt(static_cast(L_21), (Il2CppChar)((int32_t)67)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = __this->___bufChars_18; int32_t L_23 = __this->___bufPos_8; V_0 = L_23; int32_t L_24 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_24, 1)); int32_t L_25 = V_0; NullCheck(L_22); (L_22)->SetAt(static_cast(L_25), (Il2CppChar)((int32_t)68)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = __this->___bufChars_18; int32_t L_27 = __this->___bufPos_8; V_0 = L_27; int32_t L_28 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_28, 1)); int32_t L_29 = V_0; NullCheck(L_26); (L_26)->SetAt(static_cast(L_29), (Il2CppChar)((int32_t)65)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = __this->___bufChars_18; int32_t L_31 = __this->___bufPos_8; V_0 = L_31; int32_t L_32 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_32, 1)); int32_t L_33 = V_0; NullCheck(L_30); (L_30)->SetAt(static_cast(L_33), (Il2CppChar)((int32_t)84)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = __this->___bufChars_18; int32_t L_35 = __this->___bufPos_8; V_0 = L_35; int32_t L_36 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_36, 1)); int32_t L_37 = V_0; NullCheck(L_34); (L_34)->SetAt(static_cast(L_37), (Il2CppChar)((int32_t)65)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = __this->___bufChars_18; int32_t L_39 = __this->___bufPos_8; V_0 = L_39; int32_t L_40 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_40, 1)); int32_t L_41 = V_0; NullCheck(L_38); (L_38)->SetAt(static_cast(L_41), (Il2CppChar)((int32_t)91)); } IL_012a: { String_t* L_42 = ___text0; XmlEncodedRawTextWriter_WriteCDataSection_m1884616808AA94C9F91F25C9E65A42059B1C2FEE(__this, L_42, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_43 = __this->___bufChars_18; int32_t L_44 = __this->___bufPos_8; V_0 = L_44; int32_t L_45 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_45, 1)); int32_t L_46 = V_0; NullCheck(L_43); (L_43)->SetAt(static_cast(L_46), (Il2CppChar)((int32_t)93)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = __this->___bufChars_18; int32_t L_48 = __this->___bufPos_8; V_0 = L_48; int32_t L_49 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_49, 1)); int32_t L_50 = V_0; NullCheck(L_47); (L_47)->SetAt(static_cast(L_50), (Il2CppChar)((int32_t)93)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_51 = __this->___bufChars_18; int32_t L_52 = __this->___bufPos_8; V_0 = L_52; int32_t L_53 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_53, 1)); int32_t L_54 = V_0; NullCheck(L_51); (L_51)->SetAt(static_cast(L_54), (Il2CppChar)((int32_t)62)); int32_t L_55 = __this->___bufPos_8; __this->___textPos_9 = L_55; int32_t L_56 = __this->___bufPos_8; __this->___cdataPos_11 = L_56; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteComment_m61806CB2EAC9543B6C217B690AF069ECBC3F6020 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)60)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___bufChars_18; int32_t L_7 = __this->___bufPos_8; V_0 = L_7; int32_t L_8 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_8, 1)); int32_t L_9 = V_0; NullCheck(L_6); (L_6)->SetAt(static_cast(L_9), (Il2CppChar)((int32_t)33)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___bufChars_18; int32_t L_11 = __this->___bufPos_8; V_0 = L_11; int32_t L_12 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_12, 1)); int32_t L_13 = V_0; NullCheck(L_10); (L_10)->SetAt(static_cast(L_13), (Il2CppChar)((int32_t)45)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = __this->___bufChars_18; int32_t L_15 = __this->___bufPos_8; V_0 = L_15; int32_t L_16 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_16, 1)); int32_t L_17 = V_0; NullCheck(L_14); (L_14)->SetAt(static_cast(L_17), (Il2CppChar)((int32_t)45)); String_t* L_18 = ___text0; XmlEncodedRawTextWriter_WriteCommentOrPi_m62FCB36114391207A8A947D3EF8B0144A809BD48(__this, L_18, ((int32_t)45), NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___bufChars_18; int32_t L_20 = __this->___bufPos_8; V_0 = L_20; int32_t L_21 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_21, 1)); int32_t L_22 = V_0; NullCheck(L_19); (L_19)->SetAt(static_cast(L_22), (Il2CppChar)((int32_t)45)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = __this->___bufChars_18; int32_t L_24 = __this->___bufPos_8; V_0 = L_24; int32_t L_25 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_25, 1)); int32_t L_26 = V_0; NullCheck(L_23); (L_23)->SetAt(static_cast(L_26), (Il2CppChar)((int32_t)45)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = __this->___bufChars_18; int32_t L_28 = __this->___bufPos_8; V_0 = L_28; int32_t L_29 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_29, 1)); int32_t L_30 = V_0; NullCheck(L_27); (L_27)->SetAt(static_cast(L_30), (Il2CppChar)((int32_t)62)); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteProcessingInstruction_m7C95C598CABA1C1FC3EE7F67E4480B4C7F832355 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)60)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___bufChars_18; int32_t L_7 = __this->___bufPos_8; V_0 = L_7; int32_t L_8 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_8, 1)); int32_t L_9 = V_0; NullCheck(L_6); (L_6)->SetAt(static_cast(L_9), (Il2CppChar)((int32_t)63)); String_t* L_10 = ___name0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_10, NULL); String_t* L_11 = ___text1; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); if ((((int32_t)L_12) <= ((int32_t)0))) { goto IL_007e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = __this->___bufChars_18; int32_t L_14 = __this->___bufPos_8; V_0 = L_14; int32_t L_15 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_15, 1)); int32_t L_16 = V_0; NullCheck(L_13); (L_13)->SetAt(static_cast(L_16), (Il2CppChar)((int32_t)32)); String_t* L_17 = ___text1; XmlEncodedRawTextWriter_WriteCommentOrPi_m62FCB36114391207A8A947D3EF8B0144A809BD48(__this, L_17, ((int32_t)63), NULL); } IL_007e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = __this->___bufChars_18; int32_t L_19 = __this->___bufPos_8; V_0 = L_19; int32_t L_20 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_20, 1)); int32_t L_21 = V_0; NullCheck(L_18); (L_18)->SetAt(static_cast(L_21), (Il2CppChar)((int32_t)63)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = __this->___bufChars_18; int32_t L_23 = __this->___bufPos_8; V_0 = L_23; int32_t L_24 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_24, 1)); int32_t L_25 = V_0; NullCheck(L_22); (L_22)->SetAt(static_cast(L_25), (Il2CppChar)((int32_t)62)); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteEntityRef_mDBB5C2F883A9957C5DDE2D8A59A7A33DEF15DDF2 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___name0, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; int32_t L_3 = __this->___bufPos_8; V_0 = L_3; int32_t L_4 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)38)); String_t* L_6 = ___name0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_6, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = __this->___bufChars_18; int32_t L_8 = __this->___bufPos_8; V_0 = L_8; int32_t L_9 = V_0; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_9, 1)); int32_t L_10 = V_0; NullCheck(L_7); (L_7)->SetAt(static_cast(L_10), (Il2CppChar)((int32_t)59)); int32_t L_11 = __this->___bufPos_8; int32_t L_12 = __this->___bufLen_13; if ((((int32_t)L_11) <= ((int32_t)L_12))) { goto IL_0066; } } { VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); } IL_0066: { int32_t L_13 = __this->___bufPos_8; __this->___textPos_9 = L_13; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCharEntity_mA93124CDD6A6DFD37DFA3F612C1911DF98CFE434 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; { Il2CppChar L_0 = ___ch0; V_1 = L_0; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1; L_1 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL); String_t* L_2; L_2 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_1), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_1, NULL); V_0 = L_2; bool L_3 = __this->___checkCharacters_30; if (!L_3) { goto IL_0032; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_4 = (&__this->___xmlCharType_7); Il2CppChar L_5 = ___ch0; bool L_6; L_6 = XmlCharType_IsCharData_m39C87F830CD89F4F0029AA0338BB9AB5EFCC1AF5(L_4, L_5, NULL); if (L_6) { goto IL_0032; } } { Il2CppChar L_7 = ___ch0; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_8; L_8 = XmlConvert_CreateInvalidCharException_mDB4221F3CC7FE0F027C0BE5E94398367C6D528CF(L_7, 0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_WriteCharEntity_mA93124CDD6A6DFD37DFA3F612C1911DF98CFE434_RuntimeMethod_var))); } IL_0032: { bool L_9 = __this->___trackTextContent_21; if (!L_9) { goto IL_0049; } } { bool L_10 = __this->___inTextContent_22; if (!L_10) { goto IL_0049; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0049: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = __this->___bufChars_18; int32_t L_12 = __this->___bufPos_8; V_1 = L_12; int32_t L_13 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_13, 1)); int32_t L_14 = V_1; NullCheck(L_11); (L_11)->SetAt(static_cast(L_14), (Il2CppChar)((int32_t)38)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = __this->___bufChars_18; int32_t L_16 = __this->___bufPos_8; V_1 = L_16; int32_t L_17 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_17, 1)); int32_t L_18 = V_1; NullCheck(L_15); (L_15)->SetAt(static_cast(L_18), (Il2CppChar)((int32_t)35)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___bufChars_18; int32_t L_20 = __this->___bufPos_8; V_1 = L_20; int32_t L_21 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_21, 1)); int32_t L_22 = V_1; NullCheck(L_19); (L_19)->SetAt(static_cast(L_22), (Il2CppChar)((int32_t)120)); String_t* L_23 = V_0; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_23, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = __this->___bufChars_18; int32_t L_25 = __this->___bufPos_8; V_1 = L_25; int32_t L_26 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_26, 1)); int32_t L_27 = V_1; NullCheck(L_24); (L_24)->SetAt(static_cast(L_27), (Il2CppChar)((int32_t)59)); int32_t L_28 = __this->___bufPos_8; int32_t L_29 = __this->___bufLen_13; if ((((int32_t)L_28) <= ((int32_t)L_29))) { goto IL_00cc; } } { VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); } IL_00cc: { int32_t L_30 = __this->___bufPos_8; __this->___textPos_9 = L_30; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteWhitespace_mFA9FBE6D75A686D9452C0783D1F1EBAAAB6DD05A (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___ws0, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; Il2CppChar* V_2 = NULL; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { String_t* L_2 = ___ws0; V_1 = L_2; String_t* L_3 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_3); Il2CppChar* L_4 = V_0; if (!L_4) { goto IL_0027; } } { Il2CppChar* L_5 = V_0; int32_t L_6; L_6 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, L_6)); } IL_0027: { Il2CppChar* L_7 = V_0; String_t* L_8 = ___ws0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_9), 2)))); bool L_10 = __this->___inAttributeValue_16; if (!L_10) { goto IL_0045; } } { Il2CppChar* L_11 = V_0; Il2CppChar* L_12 = V_2; XmlEncodedRawTextWriter_WriteAttributeTextBlock_m8F58D0D9F8C0155608FAB1F3216FD9BA8F182913(__this, L_11, L_12, NULL); goto IL_004d; } IL_0045: { Il2CppChar* L_13 = V_0; Il2CppChar* L_14 = V_2; XmlEncodedRawTextWriter_WriteElementTextBlock_m3D8057822B0A953E78DAD98BB6017168BCFFD49C(__this, L_13, L_14, NULL); } IL_004d: { V_1 = (String_t*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteString_mA1C3CF752273BA33AC2C9E63C378C5FF0F509CF7 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; Il2CppChar* V_2 = NULL; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)1, NULL); } IL_0017: { String_t* L_2 = ___text0; V_1 = L_2; String_t* L_3 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_3); Il2CppChar* L_4 = V_0; if (!L_4) { goto IL_0027; } } { Il2CppChar* L_5 = V_0; int32_t L_6; L_6 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, L_6)); } IL_0027: { Il2CppChar* L_7 = V_0; String_t* L_8 = ___text0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_9), 2)))); bool L_10 = __this->___inAttributeValue_16; if (!L_10) { goto IL_0045; } } { Il2CppChar* L_11 = V_0; Il2CppChar* L_12 = V_2; XmlEncodedRawTextWriter_WriteAttributeTextBlock_m8F58D0D9F8C0155608FAB1F3216FD9BA8F182913(__this, L_11, L_12, NULL); goto IL_004d; } IL_0045: { Il2CppChar* L_13 = V_0; Il2CppChar* L_14 = V_2; XmlEncodedRawTextWriter_WriteElementTextBlock_m3D8057822B0A953E78DAD98BB6017168BCFFD49C(__this, L_13, L_14, NULL); } IL_004d: { V_1 = (String_t*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteSurrogateCharEntity_mC29AC47472E1C4CC4E2FBD4E36900D948766B6A6 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { Il2CppChar L_2 = ___lowChar0; Il2CppChar L_3 = ___highChar1; int32_t L_4; L_4 = XmlCharType_CombineSurrogateChar_mCCBF257D9AE510DB9D3AA852848DCEB8AE0B9512(L_2, L_3, NULL); V_0 = L_4; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = __this->___bufChars_18; int32_t L_6 = __this->___bufPos_8; V_1 = L_6; int32_t L_7 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_7, 1)); int32_t L_8 = V_1; NullCheck(L_5); (L_5)->SetAt(static_cast(L_8), (Il2CppChar)((int32_t)38)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___bufChars_18; int32_t L_10 = __this->___bufPos_8; V_1 = L_10; int32_t L_11 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_11, 1)); int32_t L_12 = V_1; NullCheck(L_9); (L_9)->SetAt(static_cast(L_12), (Il2CppChar)((int32_t)35)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = __this->___bufChars_18; int32_t L_14 = __this->___bufPos_8; V_1 = L_14; int32_t L_15 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_15, 1)); int32_t L_16 = V_1; NullCheck(L_13); (L_13)->SetAt(static_cast(L_16), (Il2CppChar)((int32_t)120)); NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_17; L_17 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL); String_t* L_18; L_18 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_17, NULL); XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_18, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___bufChars_18; int32_t L_20 = __this->___bufPos_8; V_1 = L_20; int32_t L_21 = V_1; __this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_21, 1)); int32_t L_22 = V_1; NullCheck(L_19); (L_19)->SetAt(static_cast(L_22), (Il2CppChar)((int32_t)59)); int32_t L_23 = __this->___bufPos_8; __this->___textPos_9 = L_23; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteChars_m199ABAEC5FBFBB7C234A304D5094F58D48ADFB07 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; Il2CppChar* V_1 = NULL; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)1, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___buffer0; int32_t L_3 = ___index1; NullCheck(L_2); V_1 = ((L_2)->GetAddressAt(static_cast(L_3))); Il2CppChar* L_4 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_4); bool L_5 = __this->___inAttributeValue_16; if (!L_5) { goto IL_0039; } } { Il2CppChar* L_6 = V_0; Il2CppChar* L_7 = V_0; int32_t L_8 = ___count2; XmlEncodedRawTextWriter_WriteAttributeTextBlock_m8F58D0D9F8C0155608FAB1F3216FD9BA8F182913(__this, L_6, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_8), 2)))), NULL); goto IL_0046; } IL_0039: { Il2CppChar* L_9 = V_0; Il2CppChar* L_10 = V_0; int32_t L_11 = ___count2; XmlEncodedRawTextWriter_WriteElementTextBlock_m3D8057822B0A953E78DAD98BB6017168BCFFD49C(__this, L_9, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2)))), NULL); } IL_0046: { V_1 = (Il2CppChar*)((uintptr_t)0); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteRaw_m377C81F6B413480998B3FFBE321070D4B3E3959C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; Il2CppChar* V_1 = NULL; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___buffer0; int32_t L_3 = ___index1; NullCheck(L_2); V_1 = ((L_2)->GetAddressAt(static_cast(L_3))); Il2CppChar* L_4 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_4); Il2CppChar* L_5 = V_0; Il2CppChar* L_6 = V_0; int32_t L_7 = ___count2; XmlEncodedRawTextWriter_WriteRawWithCharChecking_m9778A2D7ABE8D810FABF80BC975E67855D1C741C(__this, L_5, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_7), 2)))), NULL); V_1 = (Il2CppChar*)((uintptr_t)0); int32_t L_8 = __this->___bufPos_8; __this->___textPos_9 = L_8; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___data0, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { bool L_0 = __this->___trackTextContent_21; if (!L_0) { goto IL_0017; } } { bool L_1 = __this->___inTextContent_22; if (!L_1) { goto IL_0017; } } { XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525(__this, (bool)0, NULL); } IL_0017: { String_t* L_2 = ___data0; V_1 = L_2; String_t* L_3 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_3); Il2CppChar* L_4 = V_0; if (!L_4) { goto IL_0027; } } { Il2CppChar* L_5 = V_0; int32_t L_6; L_6 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, L_6)); } IL_0027: { Il2CppChar* L_7 = V_0; Il2CppChar* L_8 = V_0; String_t* L_9 = ___data0; NullCheck(L_9); int32_t L_10; L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL); XmlEncodedRawTextWriter_WriteRawWithCharChecking_m9778A2D7ABE8D810FABF80BC975E67855D1C741C(__this, L_7, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_10), 2)))), NULL); V_1 = (String_t*)NULL; int32_t L_11 = __this->___bufPos_8; __this->___textPos_9 = L_11; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_Close_m377D95A8F315BCD82C64D3356933B7A4F0EC976F (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_000e: {// begin finally (depth: 1) { __this->___writeToNull_14 = (bool)1; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->___stream_5; if (!L_0) { goto IL_0049; } } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_002a: {// begin finally (depth: 2) { } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0040: {// begin finally (depth: 3) __this->___stream_5 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___stream_5), (void*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL); return; }// end finally (depth: 3) }); try {// begin try (depth: 3) { bool L_1 = __this->___closeOutput_27; if (!L_1) { goto IL_003e_1; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = __this->___stream_5; NullCheck(L_2); VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_2); } IL_003e_1: { goto IL_0048; } }// end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0048: { return; } }// end finally (depth: 2) }); try {// begin try (depth: 2) Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = __this->___stream_5; NullCheck(L_3); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_3); goto IL_007d; }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0049: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_4 = __this->___writer_20; if (!L_4) { goto IL_007d; } } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_005e: {// begin finally (depth: 2) { } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0074: {// begin finally (depth: 3) __this->___writer_20 = (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___writer_20), (void*)(TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3*)NULL); return; }// end finally (depth: 3) }); try {// begin try (depth: 3) { bool L_5 = __this->___closeOutput_27; if (!L_5) { goto IL_0072_1; } } { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_6 = __this->___writer_20; NullCheck(L_6); VirtualActionInvoker0::Invoke(8 /* System.Void System.IO.TextWriter::Close() */, L_6); } IL_0072_1: { goto IL_007c; } }// end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_007c: { return; } }// end finally (depth: 2) }); try {// begin try (depth: 2) TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = __this->___writer_20; NullCheck(L_7); VirtualActionInvoker0::Invoke(10 /* System.Void System.IO.TextWriter::Flush() */, L_7); goto IL_007d; }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_007d: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); XmlEncodedRawTextWriter_FlushEncoder_mF80738DA0BD3236805E929D8953CC9955543E49B(__this, NULL); goto IL_007e; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_007e: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_Flush_mC269847F8643AE8FEB778FA84A3BA42A7A5DA2F2 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { { VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); XmlEncodedRawTextWriter_FlushEncoder_mF80738DA0BD3236805E929D8953CC9955543E49B(__this, NULL); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->___stream_5; if (!L_0) { goto IL_0020; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = __this->___stream_5; NullCheck(L_1); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_1); return; } IL_0020: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2 = __this->___writer_20; if (!L_2) { goto IL_0033; } } { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = __this->___writer_20; NullCheck(L_3); VirtualActionInvoker0::Invoke(10 /* System.Void System.IO.TextWriter::Flush() */, L_3); } IL_0033: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_FlushBuffer_mDFE298B4E2182ABDE3C497E10252BBF6D73B7C3C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack __active_exceptions; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B12_0 = NULL; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B11_0 = NULL; int32_t G_B13_0 = 0; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B13_1 = NULL; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B15_0 = NULL; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B14_0 = NULL; int32_t G_B16_0 = 0; XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* G_B16_1 = NULL; { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0088: {// begin finally (depth: 1) { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = __this->___bufChars_18; int32_t L_2 = __this->___bufPos_8; NullCheck(L_1); int32_t L_3 = ((int32_t)il2cpp_codegen_subtract(L_2, 1)); uint16_t L_4 = (uint16_t)(L_1)->GetAt(static_cast(L_3)); NullCheck(L_0); (L_0)->SetAt(static_cast(0), (Il2CppChar)L_4); int32_t L_5 = __this->___textPos_9; int32_t L_6 = __this->___bufPos_8; G_B11_0 = __this; if ((((int32_t)L_5) == ((int32_t)L_6))) { G_B12_0 = __this; goto IL_00b1; } } { G_B13_0 = 0; G_B13_1 = G_B11_0; goto IL_00b2; } IL_00b1: { G_B13_0 = 1; G_B13_1 = G_B12_0; } IL_00b2: { NullCheck(G_B13_1); G_B13_1->___textPos_9 = G_B13_0; int32_t L_7 = __this->___attrEndPos_12; int32_t L_8 = __this->___bufPos_8; G_B14_0 = __this; if ((((int32_t)L_7) == ((int32_t)L_8))) { G_B15_0 = __this; goto IL_00c9; } } { G_B16_0 = 0; G_B16_1 = G_B14_0; goto IL_00ca; } IL_00c9: { G_B16_0 = 1; G_B16_1 = G_B15_0; } IL_00ca: { NullCheck(G_B16_1); G_B16_1->___attrEndPos_12 = G_B16_0; __this->___contentPos_10 = 0; __this->___cdataPos_11 = 0; __this->___bufPos_8 = 1; return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) try {// begin try (depth: 2) { bool L_9 = __this->___writeToNull_14; if (L_9) { goto IL_007c_2; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_10 = __this->___stream_5; if (!L_10) { goto IL_0062_2; } } { bool L_11 = __this->___trackTextContent_21; if (!L_11) { goto IL_0052_2; } } { CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* L_12 = __this->___charEntityFallback_25; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = __this->___textContentMarks_24; int32_t L_14 = __this->___lastMarkPos_23; NullCheck(L_12); CharEntityEncoderFallback_Reset_mD7EF1BA49617CFC5425B5C99F91F66A1B56A37D0(L_12, L_13, L_14, NULL); int32_t L_15 = __this->___lastMarkPos_23; if (!((int32_t)(L_15&1))) { goto IL_004b_2; } } { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = __this->___textContentMarks_24; NullCheck(L_16); (L_16)->SetAt(static_cast(1), (int32_t)1); __this->___lastMarkPos_23 = 1; goto IL_0052_2; } IL_004b_2: { __this->___lastMarkPos_23 = 0; } IL_0052_2: { int32_t L_17 = __this->___bufPos_8; XmlEncodedRawTextWriter_EncodeChars_m60B652794603AF669DE64C260C032DCEC90351D4(__this, 1, L_17, (bool)1, NULL); goto IL_007c_2; } IL_0062_2: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_18 = __this->___writer_20; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___bufChars_18; int32_t L_20 = __this->___bufPos_8; NullCheck(L_18); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_18, L_19, 1, ((int32_t)il2cpp_codegen_subtract(L_20, 1))); } IL_007c_2: { goto IL_00e5; } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_007e_1; } throw e; } CATCH_007e_1: {// begin catch(System.Object) __this->___writeToNull_14 = (bool)1; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_FlushBuffer_mDFE298B4E2182ABDE3C497E10252BBF6D73B7C3C_RuntimeMethod_var))); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00e5: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::EncodeChars(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_EncodeChars_m60B652794603AF669DE64C260C032DCEC90351D4 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, int32_t ___startOffset0, int32_t ___endOffset1, bool ___writeAllToStream2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { goto IL_0095; } IL_0005: { CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* L_0 = __this->___charEntityFallback_25; if (!L_0) { goto IL_0019; } } { CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* L_1 = __this->___charEntityFallback_25; int32_t L_2 = ___startOffset0; NullCheck(L_1); CharEntityEncoderFallback_set_StartOffset_mA243578474DC2FDE44519F05E12676FE3D0A2865_inline(L_1, L_2, NULL); } IL_0019: { Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* L_3 = __this->___encoder_19; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___bufChars_18; int32_t L_5 = ___startOffset0; int32_t L_6 = ___endOffset1; int32_t L_7 = ___startOffset0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___bufBytes_4; int32_t L_9 = __this->___bufBytesUsed_17; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->___bufBytes_4; NullCheck(L_10); int32_t L_11 = __this->___bufBytesUsed_17; NullCheck(L_3); VirtualActionInvoker10< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, bool, int32_t*, int32_t*, bool* >::Invoke(9 /* System.Void System.Text.Encoder::Convert(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) */, L_3, L_4, L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), L_8, L_9, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), L_11)), (bool)0, (&V_0), (&V_1), (&V_2)); int32_t L_12 = ___startOffset0; int32_t L_13 = V_0; ___startOffset0 = ((int32_t)il2cpp_codegen_add(L_12, L_13)); int32_t L_14 = __this->___bufBytesUsed_17; int32_t L_15 = V_1; __this->___bufBytesUsed_17 = ((int32_t)il2cpp_codegen_add(L_14, L_15)); int32_t L_16 = __this->___bufBytesUsed_17; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___bufBytes_4; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_17)->max_length)), ((int32_t)16)))))) { goto IL_0095; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_18 = __this->___stream_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = __this->___bufBytes_4; int32_t L_20 = __this->___bufBytesUsed_17; NullCheck(L_18); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_18, L_19, 0, L_20); __this->___bufBytesUsed_17 = 0; } IL_0095: { int32_t L_21 = ___startOffset0; int32_t L_22 = ___endOffset1; if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0005; } } { bool L_23 = ___writeAllToStream2; if (!L_23) { goto IL_00c7; } } { int32_t L_24 = __this->___bufBytesUsed_17; if ((((int32_t)L_24) <= ((int32_t)0))) { goto IL_00c7; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_25 = __this->___stream_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = __this->___bufBytes_4; int32_t L_27 = __this->___bufBytesUsed_17; NullCheck(L_25); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_25, L_26, 0, L_27); __this->___bufBytesUsed_17 = 0; } IL_00c7: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::FlushEncoder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_FlushEncoder_mF80738DA0BD3236805E929D8953CC9955543E49B (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->___stream_5; if (!L_0) { goto IL_0047; } } { Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* L_1 = __this->___encoder_19; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___bufChars_18; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->___bufBytes_4; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___bufBytes_4; NullCheck(L_4); NullCheck(L_1); VirtualActionInvoker10< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, bool, int32_t*, int32_t*, bool* >::Invoke(9 /* System.Void System.Text.Encoder::Convert(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) */, L_1, L_2, 1, 0, L_3, 0, ((int32_t)(((RuntimeArray*)L_4)->max_length)), (bool)1, (&V_0), (&V_1), (&V_2)); int32_t L_5 = V_1; if (!L_5) { goto IL_0047; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_6 = __this->___stream_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___bufBytes_4; int32_t L_8 = V_1; NullCheck(L_6); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_6, L_7, 0, L_8); } IL_0047: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteAttributeTextBlock(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteAttributeTextBlock_m8F58D0D9F8C0155608FAB1F3216FD9BA8F182913 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; Il2CppChar* V_2 = NULL; int32_t V_3 = 0; Il2CppChar* V_4 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; V_1 = L_1; if (!L_1) { goto IL_000f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_1; NullCheck(L_2); if (((int32_t)(((RuntimeArray*)L_2)->max_length))) { goto IL_0014; } } IL_000f: { V_0 = (Il2CppChar*)((uintptr_t)0); goto IL_001d; } IL_0014: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_1; NullCheck(L_3); V_0 = (Il2CppChar*)((uintptr_t)((L_3)->GetAddressAt(static_cast(0)))); } IL_001d: { Il2CppChar* L_4 = V_0; int32_t L_5 = __this->___bufPos_8; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2)))); V_3 = 0; } IL_002b: { Il2CppChar* L_6 = V_2; Il2CppChar* L_7 = ___pSrcEnd1; Il2CppChar* L_8 = ___pSrc0; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_7, (intptr_t)L_8))/2))), ((int64_t)2)))))); Il2CppChar* L_9 = V_4; Il2CppChar* L_10 = V_0; int32_t L_11 = __this->___bufLen_13; if ((!(((uintptr_t)L_9) > ((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2)))))))) { goto IL_0064; } } { Il2CppChar* L_12 = V_0; int32_t L_13 = __this->___bufLen_13; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_13), 2)))); goto IL_0064; } IL_0057: { Il2CppChar* L_14 = V_2; int32_t L_15 = V_3; *((int16_t*)L_14) = (int16_t)((int32_t)(uint16_t)L_15); Il2CppChar* L_16 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, 2)); Il2CppChar* L_17 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, 2)); } IL_0064: { Il2CppChar* L_18 = V_2; Il2CppChar* L_19 = V_4; if ((!(((uintptr_t)L_18) < ((uintptr_t)L_19)))) { goto IL_0081; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_20 = (&__this->___xmlCharType_7); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_20->___charProperties_2; Il2CppChar* L_22 = ___pSrc0; int32_t L_23 = *((uint16_t*)L_22); int32_t L_24 = L_23; V_3 = L_24; NullCheck(L_21); int32_t L_25 = L_24; uint8_t L_26 = (L_21)->GetAt(static_cast(L_25)); if (((int32_t)((int32_t)L_26&((int32_t)128)))) { goto IL_0057; } } IL_0081: { Il2CppChar* L_27 = ___pSrc0; Il2CppChar* L_28 = ___pSrcEnd1; if ((!(((uintptr_t)L_27) < ((uintptr_t)L_28)))) { goto IL_01dd; } } { Il2CppChar* L_29 = V_2; Il2CppChar* L_30 = V_4; if ((!(((uintptr_t)L_29) >= ((uintptr_t)L_30)))) { goto IL_00a6; } } { Il2CppChar* L_31 = V_2; Il2CppChar* L_32 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_31, (intptr_t)L_32))/2)))); VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); Il2CppChar* L_33 = V_0; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, 2)); goto IL_002b; } IL_00a6: { int32_t L_34 = V_3; if ((((int32_t)L_34) > ((int32_t)((int32_t)38)))) { goto IL_00d7; } } { int32_t L_35 = V_3; switch (((int32_t)il2cpp_codegen_subtract(L_35, ((int32_t)9)))) { case 0: { goto IL_0128; } case 1: { goto IL_0166; } case 2: { goto IL_0182; } case 3: { goto IL_0182; } case 4: { goto IL_014a; } } } { int32_t L_36 = V_3; if ((((int32_t)L_36) == ((int32_t)((int32_t)34)))) { goto IL_010f; } } { int32_t L_37 = V_3; if ((((int32_t)L_37) == ((int32_t)((int32_t)38)))) { goto IL_00eb; } } { goto IL_0182; } IL_00d7: { int32_t L_38 = V_3; if ((((int32_t)L_38) == ((int32_t)((int32_t)39)))) { goto IL_011b; } } { int32_t L_39 = V_3; if ((((int32_t)L_39) == ((int32_t)((int32_t)60)))) { goto IL_00f7; } } { int32_t L_40 = V_3; if ((((int32_t)L_40) == ((int32_t)((int32_t)62)))) { goto IL_0103; } } { goto IL_0182; } IL_00eb: { Il2CppChar* L_41 = V_2; Il2CppChar* L_42; L_42 = XmlEncodedRawTextWriter_AmpEntity_mAD4A4E14B025252BD0860304EC56693F42E29BE3(L_41, NULL); V_2 = L_42; goto IL_01d3; } IL_00f7: { Il2CppChar* L_43 = V_2; Il2CppChar* L_44; L_44 = XmlEncodedRawTextWriter_LtEntity_mEE354D2DC4772A1E75D80A04E58B69A7DBAF77AE(L_43, NULL); V_2 = L_44; goto IL_01d3; } IL_0103: { Il2CppChar* L_45 = V_2; Il2CppChar* L_46; L_46 = XmlEncodedRawTextWriter_GtEntity_mB805F4EB5DEBF891F29AE3C31C0DA03534A35123(L_45, NULL); V_2 = L_46; goto IL_01d3; } IL_010f: { Il2CppChar* L_47 = V_2; Il2CppChar* L_48; L_48 = XmlEncodedRawTextWriter_QuoteEntity_m0FEC9CCA49BA830D4AB7FDCC3CF2A1C421552B6E(L_47, NULL); V_2 = L_48; goto IL_01d3; } IL_011b: { Il2CppChar* L_49 = V_2; int32_t L_50 = V_3; *((int16_t*)L_49) = (int16_t)((int32_t)(uint16_t)L_50); Il2CppChar* L_51 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_51, 2)); goto IL_01d3; } IL_0128: { int32_t L_52 = __this->___newLineHandling_26; if ((!(((uint32_t)L_52) == ((uint32_t)2)))) { goto IL_013e; } } { Il2CppChar* L_53 = V_2; int32_t L_54 = V_3; *((int16_t*)L_53) = (int16_t)((int32_t)(uint16_t)L_54); Il2CppChar* L_55 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_55, 2)); goto IL_01d3; } IL_013e: { Il2CppChar* L_56 = V_2; Il2CppChar* L_57; L_57 = XmlEncodedRawTextWriter_TabEntity_m7491D535FACB27182D168C9C79E46D761CFD0E8A(L_56, NULL); V_2 = L_57; goto IL_01d3; } IL_014a: { int32_t L_58 = __this->___newLineHandling_26; if ((!(((uint32_t)L_58) == ((uint32_t)2)))) { goto IL_015d; } } { Il2CppChar* L_59 = V_2; int32_t L_60 = V_3; *((int16_t*)L_59) = (int16_t)((int32_t)(uint16_t)L_60); Il2CppChar* L_61 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, 2)); goto IL_01d3; } IL_015d: { Il2CppChar* L_62 = V_2; Il2CppChar* L_63; L_63 = XmlEncodedRawTextWriter_CarriageReturnEntity_m11DE0373EE203F0128CFEAAAF93CC65E5720E3C2(L_62, NULL); V_2 = L_63; goto IL_01d3; } IL_0166: { int32_t L_64 = __this->___newLineHandling_26; if ((!(((uint32_t)L_64) == ((uint32_t)2)))) { goto IL_0179; } } { Il2CppChar* L_65 = V_2; int32_t L_66 = V_3; *((int16_t*)L_65) = (int16_t)((int32_t)(uint16_t)L_66); Il2CppChar* L_67 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_67, 2)); goto IL_01d3; } IL_0179: { Il2CppChar* L_68 = V_2; Il2CppChar* L_69; L_69 = XmlEncodedRawTextWriter_LineFeedEntity_m7E5278BA7006435E8BD82903193161AD5BE973B2(L_68, NULL); V_2 = L_69; goto IL_01d3; } IL_0182: { int32_t L_70 = V_3; bool L_71; L_71 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_70, NULL); if (!L_71) { goto IL_01a0; } } { Il2CppChar* L_72 = ___pSrc0; Il2CppChar* L_73 = ___pSrcEnd1; Il2CppChar* L_74 = V_2; Il2CppChar* L_75; L_75 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85(L_72, L_73, L_74, NULL); V_2 = L_75; Il2CppChar* L_76 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_76, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); goto IL_002b; } IL_01a0: { int32_t L_77 = V_3; if ((((int32_t)L_77) <= ((int32_t)((int32_t)127)))) { goto IL_01ad; } } { int32_t L_78 = V_3; if ((((int32_t)L_78) < ((int32_t)((int32_t)65534)))) { goto IL_01c1; } } IL_01ad: { int32_t L_79 = V_3; Il2CppChar* L_80 = V_2; Il2CppChar* L_81; L_81 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_79, L_80, (bool)1, NULL); V_2 = L_81; Il2CppChar* L_82 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_82, 2)); goto IL_002b; } IL_01c1: { Il2CppChar* L_83 = V_2; int32_t L_84 = V_3; *((int16_t*)L_83) = (int16_t)((int32_t)(uint16_t)L_84); Il2CppChar* L_85 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, 2)); Il2CppChar* L_86 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, 2)); goto IL_002b; } IL_01d3: { Il2CppChar* L_87 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_87, 2)); goto IL_002b; } IL_01dd: { Il2CppChar* L_88 = V_2; Il2CppChar* L_89 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_88, (intptr_t)L_89))/2)))); V_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteElementTextBlock(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteElementTextBlock_m3D8057822B0A953E78DAD98BB6017168BCFFD49C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; Il2CppChar* V_2 = NULL; int32_t V_3 = 0; Il2CppChar* V_4 = NULL; int32_t V_5 = 0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; V_1 = L_1; if (!L_1) { goto IL_000f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_1; NullCheck(L_2); if (((int32_t)(((RuntimeArray*)L_2)->max_length))) { goto IL_0014; } } IL_000f: { V_0 = (Il2CppChar*)((uintptr_t)0); goto IL_001d; } IL_0014: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_1; NullCheck(L_3); V_0 = (Il2CppChar*)((uintptr_t)((L_3)->GetAddressAt(static_cast(0)))); } IL_001d: { Il2CppChar* L_4 = V_0; int32_t L_5 = __this->___bufPos_8; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2)))); V_3 = 0; } IL_002b: { Il2CppChar* L_6 = V_2; Il2CppChar* L_7 = ___pSrcEnd1; Il2CppChar* L_8 = ___pSrc0; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_7, (intptr_t)L_8))/2))), ((int64_t)2)))))); Il2CppChar* L_9 = V_4; Il2CppChar* L_10 = V_0; int32_t L_11 = __this->___bufLen_13; if ((!(((uintptr_t)L_9) > ((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2)))))))) { goto IL_0064; } } { Il2CppChar* L_12 = V_0; int32_t L_13 = __this->___bufLen_13; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_13), 2)))); goto IL_0064; } IL_0057: { Il2CppChar* L_14 = V_2; int32_t L_15 = V_3; *((int16_t*)L_14) = (int16_t)((int32_t)(uint16_t)L_15); Il2CppChar* L_16 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, 2)); Il2CppChar* L_17 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, 2)); } IL_0064: { Il2CppChar* L_18 = V_2; Il2CppChar* L_19 = V_4; if ((!(((uintptr_t)L_18) < ((uintptr_t)L_19)))) { goto IL_0081; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_20 = (&__this->___xmlCharType_7); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_20->___charProperties_2; Il2CppChar* L_22 = ___pSrc0; int32_t L_23 = *((uint16_t*)L_22); int32_t L_24 = L_23; V_3 = L_24; NullCheck(L_21); int32_t L_25 = L_24; uint8_t L_26 = (L_21)->GetAt(static_cast(L_25)); if (((int32_t)((int32_t)L_26&((int32_t)128)))) { goto IL_0057; } } IL_0081: { Il2CppChar* L_27 = ___pSrc0; Il2CppChar* L_28 = ___pSrcEnd1; if ((!(((uintptr_t)L_27) < ((uintptr_t)L_28)))) { goto IL_01e0; } } { Il2CppChar* L_29 = V_2; Il2CppChar* L_30 = V_4; if ((!(((uintptr_t)L_29) >= ((uintptr_t)L_30)))) { goto IL_00a6; } } { Il2CppChar* L_31 = V_2; Il2CppChar* L_32 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_31, (intptr_t)L_32))/2)))); VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); Il2CppChar* L_33 = V_0; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, 2)); goto IL_002b; } IL_00a6: { int32_t L_34 = V_3; if ((((int32_t)L_34) > ((int32_t)((int32_t)38)))) { goto IL_00d7; } } { int32_t L_35 = V_3; switch (((int32_t)il2cpp_codegen_subtract(L_35, ((int32_t)9)))) { case 0: { goto IL_010f; } case 1: { goto IL_011c; } case 2: { goto IL_0185; } case 3: { goto IL_0185; } case 4: { goto IL_013e; } } } { int32_t L_36 = V_3; if ((((int32_t)L_36) == ((int32_t)((int32_t)34)))) { goto IL_010f; } } { int32_t L_37 = V_3; if ((((int32_t)L_37) == ((int32_t)((int32_t)38)))) { goto IL_00eb; } } { goto IL_0185; } IL_00d7: { int32_t L_38 = V_3; if ((((int32_t)L_38) == ((int32_t)((int32_t)39)))) { goto IL_010f; } } { int32_t L_39 = V_3; if ((((int32_t)L_39) == ((int32_t)((int32_t)60)))) { goto IL_00f7; } } { int32_t L_40 = V_3; if ((((int32_t)L_40) == ((int32_t)((int32_t)62)))) { goto IL_0103; } } { goto IL_0185; } IL_00eb: { Il2CppChar* L_41 = V_2; Il2CppChar* L_42; L_42 = XmlEncodedRawTextWriter_AmpEntity_mAD4A4E14B025252BD0860304EC56693F42E29BE3(L_41, NULL); V_2 = L_42; goto IL_01d6; } IL_00f7: { Il2CppChar* L_43 = V_2; Il2CppChar* L_44; L_44 = XmlEncodedRawTextWriter_LtEntity_mEE354D2DC4772A1E75D80A04E58B69A7DBAF77AE(L_43, NULL); V_2 = L_44; goto IL_01d6; } IL_0103: { Il2CppChar* L_45 = V_2; Il2CppChar* L_46; L_46 = XmlEncodedRawTextWriter_GtEntity_mB805F4EB5DEBF891F29AE3C31C0DA03534A35123(L_45, NULL); V_2 = L_46; goto IL_01d6; } IL_010f: { Il2CppChar* L_47 = V_2; int32_t L_48 = V_3; *((int16_t*)L_47) = (int16_t)((int32_t)(uint16_t)L_48); Il2CppChar* L_49 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, 2)); goto IL_01d6; } IL_011c: { int32_t L_50 = __this->___newLineHandling_26; if (L_50) { goto IL_0131; } } { Il2CppChar* L_51 = V_2; Il2CppChar* L_52; L_52 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_51, NULL); V_2 = L_52; goto IL_01d6; } IL_0131: { Il2CppChar* L_53 = V_2; int32_t L_54 = V_3; *((int16_t*)L_53) = (int16_t)((int32_t)(uint16_t)L_54); Il2CppChar* L_55 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_55, 2)); goto IL_01d6; } IL_013e: { int32_t L_56 = __this->___newLineHandling_26; V_5 = L_56; int32_t L_57 = V_5; switch (L_57) { case 0: { goto IL_015b; } case 1: { goto IL_0172; } case 2: { goto IL_017b; } } } { goto IL_01d6; } IL_015b: { Il2CppChar* L_58 = ___pSrc0; int32_t L_59 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_58, 2))); if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)10))))) { goto IL_0168; } } { Il2CppChar* L_60 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_60, 2)); } IL_0168: { Il2CppChar* L_61 = V_2; Il2CppChar* L_62; L_62 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_61, NULL); V_2 = L_62; goto IL_01d6; } IL_0172: { Il2CppChar* L_63 = V_2; Il2CppChar* L_64; L_64 = XmlEncodedRawTextWriter_CarriageReturnEntity_m11DE0373EE203F0128CFEAAAF93CC65E5720E3C2(L_63, NULL); V_2 = L_64; goto IL_01d6; } IL_017b: { Il2CppChar* L_65 = V_2; int32_t L_66 = V_3; *((int16_t*)L_65) = (int16_t)((int32_t)(uint16_t)L_66); Il2CppChar* L_67 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_67, 2)); goto IL_01d6; } IL_0185: { int32_t L_68 = V_3; bool L_69; L_69 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_68, NULL); if (!L_69) { goto IL_01a3; } } { Il2CppChar* L_70 = ___pSrc0; Il2CppChar* L_71 = ___pSrcEnd1; Il2CppChar* L_72 = V_2; Il2CppChar* L_73; L_73 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85(L_70, L_71, L_72, NULL); V_2 = L_73; Il2CppChar* L_74 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_74, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); goto IL_002b; } IL_01a3: { int32_t L_75 = V_3; if ((((int32_t)L_75) <= ((int32_t)((int32_t)127)))) { goto IL_01b0; } } { int32_t L_76 = V_3; if ((((int32_t)L_76) < ((int32_t)((int32_t)65534)))) { goto IL_01c4; } } IL_01b0: { int32_t L_77 = V_3; Il2CppChar* L_78 = V_2; Il2CppChar* L_79; L_79 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_77, L_78, (bool)1, NULL); V_2 = L_79; Il2CppChar* L_80 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_80, 2)); goto IL_002b; } IL_01c4: { Il2CppChar* L_81 = V_2; int32_t L_82 = V_3; *((int16_t*)L_81) = (int16_t)((int32_t)(uint16_t)L_82); Il2CppChar* L_83 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_83, 2)); Il2CppChar* L_84 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_84, 2)); goto IL_002b; } IL_01d6: { Il2CppChar* L_85 = ___pSrc0; ___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, 2)); goto IL_002b; } IL_01e0: { Il2CppChar* L_86 = V_2; Il2CppChar* L_87 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_86, (intptr_t)L_87))/2)))); int32_t L_88 = __this->___bufPos_8; __this->___textPos_9 = L_88; __this->___contentPos_10 = 0; V_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::RawText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___s0, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0 = ___s0; V_1 = L_0; String_t* L_1 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_1); Il2CppChar* L_2 = V_0; if (!L_2) { goto IL_0010; } } { Il2CppChar* L_3 = V_0; int32_t L_4; L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4)); } IL_0010: { Il2CppChar* L_5 = V_0; Il2CppChar* L_6 = V_0; String_t* L_7 = ___s0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); XmlEncodedRawTextWriter_RawText_mA929119ED811F24E33A792F319E86CD409AF447A(__this, L_5, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_8), 2)))), NULL); V_1 = (String_t*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::RawText(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_RawText_mA929119ED811F24E33A792F319E86CD409AF447A (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; Il2CppChar* V_2 = NULL; Il2CppChar* V_3 = NULL; int32_t V_4 = 0; Il2CppChar* V_5 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; V_1 = L_1; if (!L_1) { goto IL_000f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_1; NullCheck(L_2); if (((int32_t)(((RuntimeArray*)L_2)->max_length))) { goto IL_0014; } } IL_000f: { V_0 = (Il2CppChar*)((uintptr_t)0); goto IL_001d; } IL_0014: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_1; NullCheck(L_3); V_0 = (Il2CppChar*)((uintptr_t)((L_3)->GetAddressAt(static_cast(0)))); } IL_001d: { Il2CppChar* L_4 = V_0; int32_t L_5 = __this->___bufPos_8; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2)))); Il2CppChar* L_6 = ___pSrcBegin0; V_3 = L_6; V_4 = 0; } IL_002e: { Il2CppChar* L_7 = V_2; Il2CppChar* L_8 = ___pSrcEnd1; Il2CppChar* L_9 = V_3; V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_8, (intptr_t)L_9))/2))), ((int64_t)2)))))); Il2CppChar* L_10 = V_5; Il2CppChar* L_11 = V_0; int32_t L_12 = __this->___bufLen_13; if ((!(((uintptr_t)L_10) > ((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_12), 2)))))))) { goto IL_0067; } } { Il2CppChar* L_13 = V_0; int32_t L_14 = __this->___bufLen_13; V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2)))); goto IL_0067; } IL_005a: { Il2CppChar* L_15 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, 2)); Il2CppChar* L_16 = V_2; int32_t L_17 = V_4; *((int16_t*)L_16) = (int16_t)((int32_t)(uint16_t)L_17); Il2CppChar* L_18 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, 2)); } IL_0067: { Il2CppChar* L_19 = V_2; Il2CppChar* L_20 = V_5; if ((!(((uintptr_t)L_19) < ((uintptr_t)L_20)))) { goto IL_0078; } } { Il2CppChar* L_21 = V_3; int32_t L_22 = *((uint16_t*)L_21); int32_t L_23 = L_22; V_4 = L_23; if ((((int32_t)L_23) < ((int32_t)((int32_t)55296)))) { goto IL_005a; } } IL_0078: { Il2CppChar* L_24 = V_3; Il2CppChar* L_25 = ___pSrcEnd1; if ((!(((uintptr_t)L_24) < ((uintptr_t)L_25)))) { goto IL_00ed; } } { Il2CppChar* L_26 = V_2; Il2CppChar* L_27 = V_5; if ((!(((uintptr_t)L_26) >= ((uintptr_t)L_27)))) { goto IL_009a; } } { Il2CppChar* L_28 = V_2; Il2CppChar* L_29 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_28, (intptr_t)L_29))/2)))); VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); Il2CppChar* L_30 = V_0; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, 2)); goto IL_002e; } IL_009a: { int32_t L_31 = V_4; bool L_32; L_32 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_31, NULL); if (!L_32) { goto IL_00b8; } } { Il2CppChar* L_33 = V_3; Il2CppChar* L_34 = ___pSrcEnd1; Il2CppChar* L_35 = V_2; Il2CppChar* L_36; L_36 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85(L_33, L_34, L_35, NULL); V_2 = L_36; Il2CppChar* L_37 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); goto IL_002e; } IL_00b8: { int32_t L_38 = V_4; if ((((int32_t)L_38) <= ((int32_t)((int32_t)127)))) { goto IL_00c7; } } { int32_t L_39 = V_4; if ((((int32_t)L_39) < ((int32_t)((int32_t)65534)))) { goto IL_00db; } } IL_00c7: { int32_t L_40 = V_4; Il2CppChar* L_41 = V_2; Il2CppChar* L_42; L_42 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_40, L_41, (bool)0, NULL); V_2 = L_42; Il2CppChar* L_43 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_43, 2)); goto IL_002e; } IL_00db: { Il2CppChar* L_44 = V_2; int32_t L_45 = V_4; *((int16_t*)L_44) = (int16_t)((int32_t)(uint16_t)L_45); Il2CppChar* L_46 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_46, 2)); Il2CppChar* L_47 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, 2)); goto IL_002e; } IL_00ed: { Il2CppChar* L_48 = V_2; Il2CppChar* L_49 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_48, (intptr_t)L_49))/2)))); V_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteRawWithCharChecking(System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteRawWithCharChecking_m9778A2D7ABE8D810FABF80BC975E67855D1C741C (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; Il2CppChar* V_2 = NULL; Il2CppChar* V_3 = NULL; int32_t V_4 = 0; Il2CppChar* V_5 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; V_1 = L_1; if (!L_1) { goto IL_000f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_1; NullCheck(L_2); if (((int32_t)(((RuntimeArray*)L_2)->max_length))) { goto IL_0014; } } IL_000f: { V_0 = (Il2CppChar*)((uintptr_t)0); goto IL_001d; } IL_0014: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_1; NullCheck(L_3); V_0 = (Il2CppChar*)((uintptr_t)((L_3)->GetAddressAt(static_cast(0)))); } IL_001d: { Il2CppChar* L_4 = ___pSrcBegin0; V_2 = L_4; Il2CppChar* L_5 = V_0; int32_t L_6 = __this->___bufPos_8; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2)))); V_4 = 0; } IL_002e: { Il2CppChar* L_7 = V_3; Il2CppChar* L_8 = ___pSrcEnd1; Il2CppChar* L_9 = V_2; V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_8, (intptr_t)L_9))/2))), ((int64_t)2)))))); Il2CppChar* L_10 = V_5; Il2CppChar* L_11 = V_0; int32_t L_12 = __this->___bufLen_13; if ((!(((uintptr_t)L_10) > ((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_12), 2)))))))) { goto IL_0067; } } { Il2CppChar* L_13 = V_0; int32_t L_14 = __this->___bufLen_13; V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2)))); goto IL_0067; } IL_005a: { Il2CppChar* L_15 = V_3; int32_t L_16 = V_4; *((int16_t*)L_15) = (int16_t)((int32_t)(uint16_t)L_16); Il2CppChar* L_17 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, 2)); Il2CppChar* L_18 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, 2)); } IL_0067: { Il2CppChar* L_19 = V_3; Il2CppChar* L_20 = V_5; if ((!(((uintptr_t)L_19) < ((uintptr_t)L_20)))) { goto IL_0082; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_21 = (&__this->___xmlCharType_7); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = L_21->___charProperties_2; Il2CppChar* L_23 = V_2; int32_t L_24 = *((uint16_t*)L_23); int32_t L_25 = L_24; V_4 = L_25; NullCheck(L_22); int32_t L_26 = L_25; uint8_t L_27 = (L_22)->GetAt(static_cast(L_26)); if (((int32_t)((int32_t)L_27&((int32_t)64)))) { goto IL_005a; } } IL_0082: { Il2CppChar* L_28 = V_2; Il2CppChar* L_29 = ___pSrcEnd1; if ((!(((uintptr_t)L_28) < ((uintptr_t)L_29)))) { goto IL_018f; } } { Il2CppChar* L_30 = V_3; Il2CppChar* L_31 = V_5; if ((!(((uintptr_t)L_30) >= ((uintptr_t)L_31)))) { goto IL_00a7; } } { Il2CppChar* L_32 = V_3; Il2CppChar* L_33 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_32, (intptr_t)L_33))/2)))); VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); Il2CppChar* L_34 = V_0; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, 2)); goto IL_002e; } IL_00a7: { int32_t L_35 = V_4; if ((((int32_t)L_35) > ((int32_t)((int32_t)38)))) { goto IL_00d3; } } { int32_t L_36 = V_4; switch (((int32_t)il2cpp_codegen_subtract(L_36, ((int32_t)9)))) { case 0: { goto IL_00df; } case 1: { goto IL_0116; } case 2: { goto IL_0133; } case 3: { goto IL_0133; } case 4: { goto IL_00ed; } } } { int32_t L_37 = V_4; if ((((int32_t)L_37) == ((int32_t)((int32_t)38)))) { goto IL_00df; } } { goto IL_0133; } IL_00d3: { int32_t L_38 = V_4; if ((((int32_t)L_38) == ((int32_t)((int32_t)60)))) { goto IL_00df; } } { int32_t L_39 = V_4; if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)93))))) { goto IL_0133; } } IL_00df: { Il2CppChar* L_40 = V_3; int32_t L_41 = V_4; *((int16_t*)L_40) = (int16_t)((int32_t)(uint16_t)L_41); Il2CppChar* L_42 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_42, 2)); goto IL_0186; } IL_00ed: { int32_t L_43 = __this->___newLineHandling_26; if (L_43) { goto IL_010b; } } { Il2CppChar* L_44 = V_2; int32_t L_45 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_44, 2))); if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)10))))) { goto IL_0101; } } { Il2CppChar* L_46 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_46, 2)); } IL_0101: { Il2CppChar* L_47 = V_3; Il2CppChar* L_48; L_48 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_47, NULL); V_3 = L_48; goto IL_0186; } IL_010b: { Il2CppChar* L_49 = V_3; int32_t L_50 = V_4; *((int16_t*)L_49) = (int16_t)((int32_t)(uint16_t)L_50); Il2CppChar* L_51 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_51, 2)); goto IL_0186; } IL_0116: { int32_t L_52 = __this->___newLineHandling_26; if (L_52) { goto IL_0128; } } { Il2CppChar* L_53 = V_3; Il2CppChar* L_54; L_54 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_53, NULL); V_3 = L_54; goto IL_0186; } IL_0128: { Il2CppChar* L_55 = V_3; int32_t L_56 = V_4; *((int16_t*)L_55) = (int16_t)((int32_t)(uint16_t)L_56); Il2CppChar* L_57 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_57, 2)); goto IL_0186; } IL_0133: { int32_t L_58 = V_4; bool L_59; L_59 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_58, NULL); if (!L_59) { goto IL_0151; } } { Il2CppChar* L_60 = V_2; Il2CppChar* L_61 = ___pSrcEnd1; Il2CppChar* L_62 = V_3; Il2CppChar* L_63; L_63 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85(L_60, L_61, L_62, NULL); V_3 = L_63; Il2CppChar* L_64 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_64, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); goto IL_002e; } IL_0151: { int32_t L_65 = V_4; if ((((int32_t)L_65) <= ((int32_t)((int32_t)127)))) { goto IL_0160; } } { int32_t L_66 = V_4; if ((((int32_t)L_66) < ((int32_t)((int32_t)65534)))) { goto IL_0174; } } IL_0160: { int32_t L_67 = V_4; Il2CppChar* L_68 = V_3; Il2CppChar* L_69; L_69 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_67, L_68, (bool)0, NULL); V_3 = L_69; Il2CppChar* L_70 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_70, 2)); goto IL_002e; } IL_0174: { Il2CppChar* L_71 = V_3; int32_t L_72 = V_4; *((int16_t*)L_71) = (int16_t)((int32_t)(uint16_t)L_72); Il2CppChar* L_73 = V_3; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_73, 2)); Il2CppChar* L_74 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_74, 2)); goto IL_002e; } IL_0186: { Il2CppChar* L_75 = V_2; V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, 2)); goto IL_002e; } IL_018f: { Il2CppChar* L_76 = V_3; Il2CppChar* L_77 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_76, (intptr_t)L_77))/2)))); V_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCommentOrPi(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCommentOrPi_m62FCB36114391207A8A947D3EF8B0144A809BD48 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, int32_t ___stopChar1, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; Il2CppChar* V_2 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL; Il2CppChar* V_4 = NULL; Il2CppChar* V_5 = NULL; Il2CppChar* V_6 = NULL; int32_t V_7 = 0; Il2CppChar* V_8 = NULL; { String_t* L_0 = ___text0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if (L_1) { goto IL_001d; } } { int32_t L_2 = __this->___bufPos_8; int32_t L_3 = __this->___bufLen_13; if ((((int32_t)L_2) < ((int32_t)L_3))) { goto IL_001c; } } { VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); } IL_001c: { return; } IL_001d: { String_t* L_4 = ___text0; V_1 = L_4; String_t* L_5 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_5); Il2CppChar* L_6 = V_0; if (!L_6) { goto IL_002d; } } { Il2CppChar* L_7 = V_0; int32_t L_8; L_8 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, L_8)); } IL_002d: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = L_9; V_3 = L_10; if (!L_10) { goto IL_003c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_3; NullCheck(L_11); if (((int32_t)(((RuntimeArray*)L_11)->max_length))) { goto IL_0041; } } IL_003c: { V_2 = (Il2CppChar*)((uintptr_t)0); goto IL_004a; } IL_0041: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_3; NullCheck(L_12); V_2 = (Il2CppChar*)((uintptr_t)((L_12)->GetAddressAt(static_cast(0)))); } IL_004a: { Il2CppChar* L_13 = V_0; V_4 = L_13; Il2CppChar* L_14 = V_0; String_t* L_15 = ___text0; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2)))); Il2CppChar* L_17 = V_2; int32_t L_18 = __this->___bufPos_8; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 2)))); V_7 = 0; } IL_006a: { Il2CppChar* L_19 = V_6; Il2CppChar* L_20 = V_5; Il2CppChar* L_21 = V_4; V_8 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_20, (intptr_t)L_21))/2))), ((int64_t)2)))))); Il2CppChar* L_22 = V_8; Il2CppChar* L_23 = V_2; int32_t L_24 = __this->___bufLen_13; if ((!(((uintptr_t)L_22) > ((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_24), 2)))))))) { goto IL_00ab; } } { Il2CppChar* L_25 = V_2; int32_t L_26 = __this->___bufLen_13; V_8 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_26), 2)))); goto IL_00ab; } IL_0099: { Il2CppChar* L_27 = V_6; int32_t L_28 = V_7; *((int16_t*)L_27) = (int16_t)((int32_t)(uint16_t)L_28); Il2CppChar* L_29 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_29, 2)); Il2CppChar* L_30 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, 2)); } IL_00ab: { Il2CppChar* L_31 = V_6; Il2CppChar* L_32 = V_8; if ((!(((uintptr_t)L_31) < ((uintptr_t)L_32)))) { goto IL_00cd; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_33 = (&__this->___xmlCharType_7); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = L_33->___charProperties_2; Il2CppChar* L_35 = V_4; int32_t L_36 = *((uint16_t*)L_35); int32_t L_37 = L_36; V_7 = L_37; NullCheck(L_34); int32_t L_38 = L_37; uint8_t L_39 = (L_34)->GetAt(static_cast(L_38)); if (!((int32_t)((int32_t)L_39&((int32_t)64)))) { goto IL_00cd; } } { int32_t L_40 = V_7; int32_t L_41 = ___stopChar1; if ((!(((uint32_t)L_40) == ((uint32_t)L_41)))) { goto IL_0099; } } IL_00cd: { Il2CppChar* L_42 = V_4; Il2CppChar* L_43 = V_5; if ((!(((uintptr_t)L_42) < ((uintptr_t)L_43)))) { goto IL_02a1; } } { Il2CppChar* L_44 = V_6; Il2CppChar* L_45 = V_8; if ((!(((uintptr_t)L_44) >= ((uintptr_t)L_45)))) { goto IL_00fa; } } { Il2CppChar* L_46 = V_6; Il2CppChar* L_47 = V_2; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_46, (intptr_t)L_47))/2)))); VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); Il2CppChar* L_48 = V_2; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_48, 2)); goto IL_006a; } IL_00fa: { int32_t L_49 = V_7; if ((((int32_t)L_49) > ((int32_t)((int32_t)45)))) { goto IL_0132; } } { int32_t L_50 = V_7; switch (((int32_t)il2cpp_codegen_subtract(L_50, ((int32_t)9)))) { case 0: { goto IL_0226; } case 1: { goto IL_0204; } case 2: { goto IL_0234; } case 3: { goto IL_0234; } case 4: { goto IL_01cd; } } } { int32_t L_51 = V_7; if ((((int32_t)L_51) == ((int32_t)((int32_t)38)))) { goto IL_0226; } } { int32_t L_52 = V_7; if ((((int32_t)L_52) == ((int32_t)((int32_t)45)))) { goto IL_014c; } } { goto IL_0234; } IL_0132: { int32_t L_53 = V_7; if ((((int32_t)L_53) == ((int32_t)((int32_t)60)))) { goto IL_0226; } } { int32_t L_54 = V_7; if ((((int32_t)L_54) == ((int32_t)((int32_t)63)))) { goto IL_0183; } } { int32_t L_55 = V_7; if ((((int32_t)L_55) == ((int32_t)((int32_t)93)))) { goto IL_01bd; } } { goto IL_0234; } IL_014c: { Il2CppChar* L_56 = V_6; *((int16_t*)L_56) = (int16_t)((int32_t)45); Il2CppChar* L_57 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_57, 2)); int32_t L_58 = V_7; int32_t L_59 = ___stopChar1; if ((!(((uint32_t)L_58) == ((uint32_t)L_59)))) { goto IL_0296; } } { Il2CppChar* L_60 = V_4; Il2CppChar* L_61 = V_5; if ((((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_60, 2))) == ((intptr_t)L_61))) { goto IL_0173; } } { Il2CppChar* L_62 = V_4; int32_t L_63 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_62, 2))); if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)45))))) { goto IL_0296; } } IL_0173: { Il2CppChar* L_64 = V_6; *((int16_t*)L_64) = (int16_t)((int32_t)32); Il2CppChar* L_65 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, 2)); goto IL_0296; } IL_0183: { Il2CppChar* L_66 = V_6; *((int16_t*)L_66) = (int16_t)((int32_t)63); Il2CppChar* L_67 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_67, 2)); int32_t L_68 = V_7; int32_t L_69 = ___stopChar1; if ((!(((uint32_t)L_68) == ((uint32_t)L_69)))) { goto IL_0296; } } { Il2CppChar* L_70 = V_4; Il2CppChar* L_71 = V_5; if ((!(((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_70, 2))) < ((uintptr_t)L_71)))) { goto IL_0296; } } { Il2CppChar* L_72 = V_4; int32_t L_73 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, 2))); if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)62))))) { goto IL_0296; } } { Il2CppChar* L_74 = V_6; *((int16_t*)L_74) = (int16_t)((int32_t)32); Il2CppChar* L_75 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, 2)); goto IL_0296; } IL_01bd: { Il2CppChar* L_76 = V_6; *((int16_t*)L_76) = (int16_t)((int32_t)93); Il2CppChar* L_77 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_77, 2)); goto IL_0296; } IL_01cd: { int32_t L_78 = __this->___newLineHandling_26; if (L_78) { goto IL_01f3; } } { Il2CppChar* L_79 = V_4; int32_t L_80 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_79, 2))); if ((!(((uint32_t)L_80) == ((uint32_t)((int32_t)10))))) { goto IL_01e4; } } { Il2CppChar* L_81 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_81, 2)); } IL_01e4: { Il2CppChar* L_82 = V_6; Il2CppChar* L_83; L_83 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_82, NULL); V_6 = L_83; goto IL_0296; } IL_01f3: { Il2CppChar* L_84 = V_6; int32_t L_85 = V_7; *((int16_t*)L_84) = (int16_t)((int32_t)(uint16_t)L_85); Il2CppChar* L_86 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, 2)); goto IL_0296; } IL_0204: { int32_t L_87 = __this->___newLineHandling_26; if (L_87) { goto IL_0218; } } { Il2CppChar* L_88 = V_6; Il2CppChar* L_89; L_89 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_88, NULL); V_6 = L_89; goto IL_0296; } IL_0218: { Il2CppChar* L_90 = V_6; int32_t L_91 = V_7; *((int16_t*)L_90) = (int16_t)((int32_t)(uint16_t)L_91); Il2CppChar* L_92 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, 2)); goto IL_0296; } IL_0226: { Il2CppChar* L_93 = V_6; int32_t L_94 = V_7; *((int16_t*)L_93) = (int16_t)((int32_t)(uint16_t)L_94); Il2CppChar* L_95 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, 2)); goto IL_0296; } IL_0234: { int32_t L_96 = V_7; bool L_97; L_97 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_96, NULL); if (!L_97) { goto IL_0258; } } { Il2CppChar* L_98 = V_4; Il2CppChar* L_99 = V_5; Il2CppChar* L_100 = V_6; Il2CppChar* L_101; L_101 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85(L_98, L_99, L_100, NULL); V_6 = L_101; Il2CppChar* L_102 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_102, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); goto IL_006a; } IL_0258: { int32_t L_103 = V_7; if ((((int32_t)L_103) <= ((int32_t)((int32_t)127)))) { goto IL_0267; } } { int32_t L_104 = V_7; if ((((int32_t)L_104) < ((int32_t)((int32_t)65534)))) { goto IL_027f; } } IL_0267: { int32_t L_105 = V_7; Il2CppChar* L_106 = V_6; Il2CppChar* L_107; L_107 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_105, L_106, (bool)0, NULL); V_6 = L_107; Il2CppChar* L_108 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_108, 2)); goto IL_006a; } IL_027f: { Il2CppChar* L_109 = V_6; int32_t L_110 = V_7; *((int16_t*)L_109) = (int16_t)((int32_t)(uint16_t)L_110); Il2CppChar* L_111 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_111, 2)); Il2CppChar* L_112 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_112, 2)); goto IL_006a; } IL_0296: { Il2CppChar* L_113 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_113, 2)); goto IL_006a; } IL_02a1: { Il2CppChar* L_114 = V_6; Il2CppChar* L_115 = V_2; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_114, (intptr_t)L_115))/2)))); V_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; V_1 = (String_t*)NULL; return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::WriteCDataSection(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_WriteCDataSection_m1884616808AA94C9F91F25C9E65A42059B1C2FEE (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___text0, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; Il2CppChar* V_2 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL; Il2CppChar* V_4 = NULL; Il2CppChar* V_5 = NULL; Il2CppChar* V_6 = NULL; int32_t V_7 = 0; Il2CppChar* V_8 = NULL; { String_t* L_0 = ___text0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if (L_1) { goto IL_001d; } } { int32_t L_2 = __this->___bufPos_8; int32_t L_3 = __this->___bufLen_13; if ((((int32_t)L_2) < ((int32_t)L_3))) { goto IL_001c; } } { VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); } IL_001c: { return; } IL_001d: { String_t* L_4 = ___text0; V_1 = L_4; String_t* L_5 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_5); Il2CppChar* L_6 = V_0; if (!L_6) { goto IL_002d; } } { Il2CppChar* L_7 = V_0; int32_t L_8; L_8 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, L_8)); } IL_002d: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = L_9; V_3 = L_10; if (!L_10) { goto IL_003c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_3; NullCheck(L_11); if (((int32_t)(((RuntimeArray*)L_11)->max_length))) { goto IL_0041; } } IL_003c: { V_2 = (Il2CppChar*)((uintptr_t)0); goto IL_004a; } IL_0041: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_3; NullCheck(L_12); V_2 = (Il2CppChar*)((uintptr_t)((L_12)->GetAddressAt(static_cast(0)))); } IL_004a: { Il2CppChar* L_13 = V_0; V_4 = L_13; Il2CppChar* L_14 = V_0; String_t* L_15 = ___text0; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2)))); Il2CppChar* L_17 = V_2; int32_t L_18 = __this->___bufPos_8; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 2)))); V_7 = 0; } IL_006a: { Il2CppChar* L_19 = V_6; Il2CppChar* L_20 = V_5; Il2CppChar* L_21 = V_4; V_8 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_20, (intptr_t)L_21))/2))), ((int64_t)2)))))); Il2CppChar* L_22 = V_8; Il2CppChar* L_23 = V_2; int32_t L_24 = __this->___bufLen_13; if ((!(((uintptr_t)L_22) > ((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_24), 2)))))))) { goto IL_00ab; } } { Il2CppChar* L_25 = V_2; int32_t L_26 = __this->___bufLen_13; V_8 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_26), 2)))); goto IL_00ab; } IL_0099: { Il2CppChar* L_27 = V_6; int32_t L_28 = V_7; *((int16_t*)L_27) = (int16_t)((int32_t)(uint16_t)L_28); Il2CppChar* L_29 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_29, 2)); Il2CppChar* L_30 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, 2)); } IL_00ab: { Il2CppChar* L_31 = V_6; Il2CppChar* L_32 = V_8; if ((!(((uintptr_t)L_31) < ((uintptr_t)L_32)))) { goto IL_00d1; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_33 = (&__this->___xmlCharType_7); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = L_33->___charProperties_2; Il2CppChar* L_35 = V_4; int32_t L_36 = *((uint16_t*)L_35); int32_t L_37 = L_36; V_7 = L_37; NullCheck(L_34); int32_t L_38 = L_37; uint8_t L_39 = (L_34)->GetAt(static_cast(L_38)); if (!((int32_t)((int32_t)L_39&((int32_t)128)))) { goto IL_00d1; } } { int32_t L_40 = V_7; if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)93))))) { goto IL_0099; } } IL_00d1: { Il2CppChar* L_41 = V_4; Il2CppChar* L_42 = V_5; if ((!(((uintptr_t)L_41) < ((uintptr_t)L_42)))) { goto IL_028b; } } { Il2CppChar* L_43 = V_6; Il2CppChar* L_44 = V_8; if ((!(((uintptr_t)L_43) >= ((uintptr_t)L_44)))) { goto IL_00fe; } } { Il2CppChar* L_45 = V_6; Il2CppChar* L_46 = V_2; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_45, (intptr_t)L_46))/2)))); VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlEncodedRawTextWriter::FlushBuffer() */, __this); Il2CppChar* L_47 = V_2; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, 2)); goto IL_006a; } IL_00fe: { int32_t L_48 = V_7; if ((((int32_t)L_48) > ((int32_t)((int32_t)39)))) { goto IL_013b; } } { int32_t L_49 = V_7; switch (((int32_t)il2cpp_codegen_subtract(L_49, ((int32_t)9)))) { case 0: { goto IL_0210; } case 1: { goto IL_01ee; } case 2: { goto IL_021e; } case 3: { goto IL_021e; } case 4: { goto IL_01b7; } } } { int32_t L_50 = V_7; if ((((int32_t)L_50) == ((int32_t)((int32_t)34)))) { goto IL_0210; } } { int32_t L_51 = V_7; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_51, ((int32_t)38)))) > ((uint32_t)1)))) { goto IL_0210; } } { goto IL_021e; } IL_013b: { int32_t L_52 = V_7; if ((((int32_t)L_52) == ((int32_t)((int32_t)60)))) { goto IL_0210; } } { int32_t L_53 = V_7; if ((((int32_t)L_53) == ((int32_t)((int32_t)62)))) { goto IL_0155; } } { int32_t L_54 = V_7; if ((((int32_t)L_54) == ((int32_t)((int32_t)93)))) { goto IL_018b; } } { goto IL_021e; } IL_0155: { bool L_55 = __this->___hadDoubleBracket_15; if (!L_55) { goto IL_017b; } } { Il2CppChar* L_56 = V_6; int32_t L_57 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_56, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)(-1)), 2))))); if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)93))))) { goto IL_017b; } } { Il2CppChar* L_58 = V_6; Il2CppChar* L_59; L_59 = XmlEncodedRawTextWriter_RawEndCData_m0736AD01696CBC33642EE400C3B19CB6B03FA8DF(L_58, NULL); V_6 = L_59; Il2CppChar* L_60 = V_6; Il2CppChar* L_61; L_61 = XmlEncodedRawTextWriter_RawStartCData_m7A53A704BC3691FC3CEF12C54406F00FA793D50F(L_60, NULL); V_6 = L_61; } IL_017b: { Il2CppChar* L_62 = V_6; *((int16_t*)L_62) = (int16_t)((int32_t)62); Il2CppChar* L_63 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_63, 2)); goto IL_0280; } IL_018b: { Il2CppChar* L_64 = V_6; int32_t L_65 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_64, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)(-1)), 2))))); if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)93))))) { goto IL_01a0; } } { __this->___hadDoubleBracket_15 = (bool)1; goto IL_01a7; } IL_01a0: { __this->___hadDoubleBracket_15 = (bool)0; } IL_01a7: { Il2CppChar* L_66 = V_6; *((int16_t*)L_66) = (int16_t)((int32_t)93); Il2CppChar* L_67 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_67, 2)); goto IL_0280; } IL_01b7: { int32_t L_68 = __this->___newLineHandling_26; if (L_68) { goto IL_01dd; } } { Il2CppChar* L_69 = V_4; int32_t L_70 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_69, 2))); if ((!(((uint32_t)L_70) == ((uint32_t)((int32_t)10))))) { goto IL_01ce; } } { Il2CppChar* L_71 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, 2)); } IL_01ce: { Il2CppChar* L_72 = V_6; Il2CppChar* L_73; L_73 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_72, NULL); V_6 = L_73; goto IL_0280; } IL_01dd: { Il2CppChar* L_74 = V_6; int32_t L_75 = V_7; *((int16_t*)L_74) = (int16_t)((int32_t)(uint16_t)L_75); Il2CppChar* L_76 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_76, 2)); goto IL_0280; } IL_01ee: { int32_t L_77 = __this->___newLineHandling_26; if (L_77) { goto IL_0202; } } { Il2CppChar* L_78 = V_6; Il2CppChar* L_79; L_79 = XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6(__this, L_78, NULL); V_6 = L_79; goto IL_0280; } IL_0202: { Il2CppChar* L_80 = V_6; int32_t L_81 = V_7; *((int16_t*)L_80) = (int16_t)((int32_t)(uint16_t)L_81); Il2CppChar* L_82 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_82, 2)); goto IL_0280; } IL_0210: { Il2CppChar* L_83 = V_6; int32_t L_84 = V_7; *((int16_t*)L_83) = (int16_t)((int32_t)(uint16_t)L_84); Il2CppChar* L_85 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, 2)); goto IL_0280; } IL_021e: { int32_t L_86 = V_7; bool L_87; L_87 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_86, NULL); if (!L_87) { goto IL_0242; } } { Il2CppChar* L_88 = V_4; Il2CppChar* L_89 = V_5; Il2CppChar* L_90 = V_6; Il2CppChar* L_91; L_91 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85(L_88, L_89, L_90, NULL); V_6 = L_91; Il2CppChar* L_92 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); goto IL_006a; } IL_0242: { int32_t L_93 = V_7; if ((((int32_t)L_93) <= ((int32_t)((int32_t)127)))) { goto IL_0251; } } { int32_t L_94 = V_7; if ((((int32_t)L_94) < ((int32_t)((int32_t)65534)))) { goto IL_0269; } } IL_0251: { int32_t L_95 = V_7; Il2CppChar* L_96 = V_6; Il2CppChar* L_97; L_97 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_95, L_96, (bool)0, NULL); V_6 = L_97; Il2CppChar* L_98 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_98, 2)); goto IL_006a; } IL_0269: { Il2CppChar* L_99 = V_6; int32_t L_100 = V_7; *((int16_t*)L_99) = (int16_t)((int32_t)(uint16_t)L_100); Il2CppChar* L_101 = V_6; V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_101, 2)); Il2CppChar* L_102 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_102, 2)); goto IL_006a; } IL_0280: { Il2CppChar* L_103 = V_4; V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_103, 2)); goto IL_006a; } IL_028b: { Il2CppChar* L_104 = V_6; Il2CppChar* L_105 = V_2; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_104, (intptr_t)L_105))/2)))); V_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; V_1 = (String_t*)NULL; return; } } // System.Char* System.Xml.XmlEncodedRawTextWriter::EncodeSurrogate(System.Char*,System.Char*,System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85 (Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, Il2CppChar* ___pDst2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { Il2CppChar* L_0 = ___pSrc0; int32_t L_1 = *((uint16_t*)L_0); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) > ((int32_t)((int32_t)56319)))) { goto IL_005b; } } { Il2CppChar* L_3 = ___pSrc0; Il2CppChar* L_4 = ___pSrcEnd1; if ((!(((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, 2))) < ((uintptr_t)L_4)))) { goto IL_004b; } } { Il2CppChar* L_5 = ___pSrc0; int32_t L_6 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, 2))); V_1 = L_6; int32_t L_7 = V_1; if ((((int32_t)L_7) < ((int32_t)((int32_t)56320)))) { goto IL_0041; } } { bool L_8 = ((LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_StaticFields*)il2cpp_codegen_static_fields_for(LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_il2cpp_TypeInfo_var))->___DontThrowOnInvalidSurrogatePairs_1; if (L_8) { goto IL_002d; } } { int32_t L_9 = V_1; if ((((int32_t)L_9) > ((int32_t)((int32_t)57343)))) { goto IL_0041; } } IL_002d: { Il2CppChar* L_10 = ___pDst2; int32_t L_11 = V_0; *((int16_t*)L_10) = (int16_t)((int32_t)(uint16_t)L_11); Il2CppChar* L_12 = ___pDst2; int32_t L_13 = V_1; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, 2))) = (int16_t)((int32_t)(uint16_t)L_13); Il2CppChar* L_14 = ___pDst2; ___pDst2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); Il2CppChar* L_15 = ___pDst2; return L_15; } IL_0041: { int32_t L_16 = V_1; int32_t L_17 = V_0; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_18; L_18 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(((int32_t)(uint16_t)L_16), ((int32_t)(uint16_t)L_17), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85_RuntimeMethod_var))); } IL_004b: { String_t* L_19; L_19 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_20); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, L_19, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85_RuntimeMethod_var))); } IL_005b: { int32_t L_21 = V_0; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_22; L_22 = XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C(((int32_t)(uint16_t)L_21), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85_RuntimeMethod_var))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::InvalidXmlChar(System.Int32,System.Char*,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, int32_t ___ch0, Il2CppChar* ___pDst1, bool ___entitize2, const RuntimeMethod* method) { { bool L_0 = __this->___checkCharacters_30; if (!L_0) { goto IL_0011; } } { int32_t L_1 = ___ch0; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_2; L_2 = XmlConvert_CreateInvalidCharException_mDB4221F3CC7FE0F027C0BE5E94398367C6D528CF(((int32_t)(uint16_t)L_1), 0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8_RuntimeMethod_var))); } IL_0011: { bool L_3 = ___entitize2; if (!L_3) { goto IL_001d; } } { Il2CppChar* L_4 = ___pDst1; int32_t L_5 = ___ch0; Il2CppChar* L_6; L_6 = XmlEncodedRawTextWriter_CharEntity_mC0084BB86762E5BD392380A737C148C652E66580(L_4, ((int32_t)(uint16_t)L_5), NULL); return L_6; } IL_001d: { Il2CppChar* L_7 = ___pDst1; int32_t L_8 = ___ch0; *((int16_t*)L_7) = (int16_t)((int32_t)(uint16_t)L_8); Il2CppChar* L_9 = ___pDst1; ___pDst1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, 2)); Il2CppChar* L_10 = ___pDst1; return L_10; } } // System.Void System.Xml.XmlEncodedRawTextWriter::EncodeChar(System.Char*&,System.Char*,System.Char*&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_EncodeChar_m388794BCD9A6D41B1FC04CF1BAC8B583D86D534F (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar** ___pSrc0, Il2CppChar* ___pSrcEnd1, Il2CppChar** ___pDst2, const RuntimeMethod* method) { int32_t V_0 = 0; { Il2CppChar** L_0 = ___pSrc0; int32_t L_1 = *((uint16_t*)(*((intptr_t*)L_0))); V_0 = L_1; int32_t L_2 = V_0; bool L_3; L_3 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_2, NULL); if (!L_3) { goto IL_0022; } } { Il2CppChar** L_4 = ___pDst2; Il2CppChar** L_5 = ___pSrc0; Il2CppChar* L_6 = ___pSrcEnd1; Il2CppChar** L_7 = ___pDst2; Il2CppChar* L_8; L_8 = XmlEncodedRawTextWriter_EncodeSurrogate_mE3F406E3DBCA5D99CA09F193593FF9989DA44A85((Il2CppChar*)(*((intptr_t*)L_5)), L_6, (Il2CppChar*)(*((intptr_t*)L_7)), NULL); *((intptr_t*)L_4) = (intptr_t)L_8; Il2CppChar** L_9 = ___pSrc0; Il2CppChar** L_10 = ___pSrc0; *((intptr_t*)L_9) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_10)), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2)))); return; } IL_0022: { int32_t L_11 = V_0; if ((((int32_t)L_11) <= ((int32_t)((int32_t)127)))) { goto IL_002f; } } { int32_t L_12 = V_0; if ((((int32_t)L_12) < ((int32_t)((int32_t)65534)))) { goto IL_0042; } } IL_002f: { Il2CppChar** L_13 = ___pDst2; int32_t L_14 = V_0; Il2CppChar** L_15 = ___pDst2; Il2CppChar* L_16; L_16 = XmlEncodedRawTextWriter_InvalidXmlChar_m7C4D168D5FBBC86E245026139645FB81F0A8CBE8(__this, L_14, (Il2CppChar*)(*((intptr_t*)L_15)), (bool)0, NULL); *((intptr_t*)L_13) = (intptr_t)L_16; Il2CppChar** L_17 = ___pSrc0; Il2CppChar** L_18 = ___pSrc0; *((intptr_t*)L_17) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_18)), 2)); return; } IL_0042: { Il2CppChar** L_19 = ___pDst2; int32_t L_20 = V_0; *((int16_t*)(*((intptr_t*)L_19))) = (int16_t)((int32_t)(uint16_t)L_20); Il2CppChar** L_21 = ___pDst2; Il2CppChar** L_22 = ___pDst2; *((intptr_t*)L_21) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_22)), 2)); Il2CppChar** L_23 = ___pSrc0; Il2CppChar** L_24 = ___pSrc0; *((intptr_t*)L_23) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_24)), 2)); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::ChangeTextContentMark(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_ChangeTextContentMark_m6BD4020CC1EDA89BD8A435BBF41415FF20C31525 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, bool ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = ___value0; __this->___inTextContent_22 = L_0; int32_t L_1 = __this->___lastMarkPos_23; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___textContentMarks_24; NullCheck(L_2); if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_1, 1))) == ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_001f; } } { XmlEncodedRawTextWriter_GrowTextContentMarks_m25414678B0AEDF49A5EE82F2DE217E94D92283B0(__this, NULL); } IL_001f: { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___textContentMarks_24; int32_t L_4 = __this->___lastMarkPos_23; V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_0; __this->___lastMarkPos_23 = L_5; int32_t L_6 = V_0; int32_t L_7 = __this->___bufPos_8; NullCheck(L_3); (L_3)->SetAt(static_cast(L_6), (int32_t)L_7); return; } } // System.Void System.Xml.XmlEncodedRawTextWriter::GrowTextContentMarks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_GrowTextContentMarks_m25414678B0AEDF49A5EE82F2DE217E94D92283B0 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL; { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___textContentMarks_24; NullCheck(L_0); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2))); V_0 = L_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___textContentMarks_24; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___textContentMarks_24; NullCheck(L_4); Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_2, (RuntimeArray*)L_3, ((int32_t)(((RuntimeArray*)L_4)->max_length)), NULL); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = V_0; __this->___textContentMarks_24 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___textContentMarks_24), (void*)L_5); return; } } // System.Char* System.Xml.XmlEncodedRawTextWriter::WriteNewLine(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_WriteNewLine_m2F310D34F35083C897367ED5931599FCD9E494A6 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Il2CppChar* ___pDst0, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___bufChars_18; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; V_1 = L_1; if (!L_1) { goto IL_000f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_1; NullCheck(L_2); if (((int32_t)(((RuntimeArray*)L_2)->max_length))) { goto IL_0014; } } IL_000f: { V_0 = (Il2CppChar*)((uintptr_t)0); goto IL_001d; } IL_0014: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_1; NullCheck(L_3); V_0 = (Il2CppChar*)((uintptr_t)((L_3)->GetAddressAt(static_cast(0)))); } IL_001d: { Il2CppChar* L_4 = ___pDst0; Il2CppChar* L_5 = V_0; __this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_4, (intptr_t)L_5))/2)))); String_t* L_6 = __this->___newLineChars_29; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_6, NULL); Il2CppChar* L_7 = V_0; int32_t L_8 = __this->___bufPos_8; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_8), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::LtEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_LtEntity_mEE354D2DC4772A1E75D80A04E58B69A7DBAF77AE (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)108); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)116); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_4 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::GtEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_GtEntity_mB805F4EB5DEBF891F29AE3C31C0DA03534A35123 (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)103); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)116); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_4 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::AmpEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_AmpEntity_mAD4A4E14B025252BD0860304EC56693F42E29BE3 (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)97); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)109); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)112); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_5 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::QuoteEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_QuoteEntity_m0FEC9CCA49BA830D4AB7FDCC3CF2A1C421552B6E (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)113); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)117); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)111); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)116); Il2CppChar* L_5 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_6 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)6), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::TabEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_TabEntity_m7491D535FACB27182D168C9C79E46D761CFD0E8A (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)35); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)120); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)57); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_5 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::LineFeedEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_LineFeedEntity_m7E5278BA7006435E8BD82903193161AD5BE973B2 (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)35); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)120); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)65); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_5 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::CarriageReturnEntity(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_CarriageReturnEntity_m11DE0373EE203F0128CFEAAAF93CC65E5720E3C2 (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)38); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)35); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)120); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)68); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_5 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::CharEntity(System.Char*,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_CharEntity_mC0084BB86762E5BD392380A737C148C652E66580 (Il2CppChar* ___pDst0, Il2CppChar ___ch1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar* V_1 = NULL; String_t* V_2 = NULL; Il2CppChar* V_3 = NULL; Il2CppChar V_4 = 0x0; { Il2CppChar L_0 = ___ch1; V_0 = L_0; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1; L_1 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL); String_t* L_2; L_2 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_1, NULL); Il2CppChar* L_3 = ___pDst0; *((int16_t*)L_3) = (int16_t)((int32_t)38); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, 2))) = (int16_t)((int32_t)35); Il2CppChar* L_5 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)120); Il2CppChar* L_6 = ___pDst0; ___pDst0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2)))); V_2 = L_2; String_t* L_7 = V_2; V_1 = (Il2CppChar*)((uintptr_t)L_7); Il2CppChar* L_8 = V_1; if (!L_8) { goto IL_003d; } } { Il2CppChar* L_9 = V_1; int32_t L_10; L_10 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, L_10)); } IL_003d: { Il2CppChar* L_11 = V_1; V_3 = L_11; } IL_003f: { Il2CppChar* L_12 = ___pDst0; Il2CppChar* L_13 = L_12; ___pDst0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, 2)); Il2CppChar* L_14 = V_3; Il2CppChar* L_15 = L_14; V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, 2)); int32_t L_16 = *((uint16_t*)L_15); int32_t L_17 = L_16; V_4 = L_17; *((int16_t*)L_13) = (int16_t)L_17; Il2CppChar L_18 = V_4; if (L_18) { goto IL_003f; } } { V_2 = (String_t*)NULL; Il2CppChar* L_19 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)(-1)), 2))))) = (int16_t)((int32_t)59); Il2CppChar* L_20 = ___pDst0; return L_20; } } // System.Char* System.Xml.XmlEncodedRawTextWriter::RawStartCData(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_RawStartCData_m7A53A704BC3691FC3CEF12C54406F00FA793D50F (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)60); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)33); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)91); Il2CppChar* L_3 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)((int32_t)67); Il2CppChar* L_4 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)68); Il2CppChar* L_5 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2))))) = (int16_t)((int32_t)65); Il2CppChar* L_6 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)6), 2))))) = (int16_t)((int32_t)84); Il2CppChar* L_7 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)7), 2))))) = (int16_t)((int32_t)65); Il2CppChar* L_8 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)8), 2))))) = (int16_t)((int32_t)91); Il2CppChar* L_9 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)9)), 2)))); } } // System.Char* System.Xml.XmlEncodedRawTextWriter::RawEndCData(System.Char*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* XmlEncodedRawTextWriter_RawEndCData_m0736AD01696CBC33642EE400C3B19CB6B03FA8DF (Il2CppChar* ___pDst0, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___pDst0; *((int16_t*)L_0) = (int16_t)((int32_t)93); Il2CppChar* L_1 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)93); Il2CppChar* L_2 = ___pDst0; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)((int32_t)62); Il2CppChar* L_3 = ___pDst0; return ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2)))); } } // System.Void System.Xml.XmlEncodedRawTextWriter::ValidateContentChars(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, String_t* ___chars0, String_t* ___propertyName1, bool ___allowOnlyWhitespace2, const RuntimeMethod* method) { String_t* V_0 = NULL; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL; uint32_t V_4 = 0; { bool L_0 = ___allowOnlyWhitespace2; if (!L_0) { goto IL_002e; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_1 = (&__this->___xmlCharType_7); String_t* L_2 = ___chars0; bool L_3; L_3 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490(L_1, L_2, NULL); if (L_3) { goto IL_014d; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4; String_t* L_6 = ___propertyName1; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(0), (RuntimeObject*)L_6); String_t* L_7; L_7 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5520F0EAC899C656D9482CE97A660E8F8E28ED01)), L_5, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_8); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A_RuntimeMethod_var))); } IL_002e: { V_0 = (String_t*)NULL; V_1 = 0; goto IL_0120; } IL_0037: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_9 = (&__this->___xmlCharType_7); String_t* L_10 = ___chars0; int32_t L_11 = V_1; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); bool L_13; L_13 = XmlCharType_IsTextChar_mD4DD7B3C0E63D031A4EFFDD6635F68DDE166A4AB(L_9, L_12, NULL); if (L_13) { goto IL_011c; } } { String_t* L_14 = ___chars0; int32_t L_15 = V_1; NullCheck(L_14); Il2CppChar L_16; L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL); V_2 = L_16; Il2CppChar L_17 = V_2; if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)38))))) { goto IL_007f; } } { Il2CppChar L_18 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_18, ((int32_t)9)))) { case 0: { goto IL_011c; } case 1: { goto IL_011c; } case 2: { goto IL_00a2; } case 3: { goto IL_00a2; } case 4: { goto IL_011c; } } } { Il2CppChar L_19 = V_2; if ((((int32_t)L_19) == ((int32_t)((int32_t)38)))) { goto IL_0089; } } { goto IL_00a2; } IL_007f: { Il2CppChar L_20 = V_2; if ((((int32_t)L_20) == ((int32_t)((int32_t)60)))) { goto IL_0089; } } { Il2CppChar L_21 = V_2; if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)93))))) { goto IL_00a2; } } IL_0089: { String_t* L_22 = ___chars0; int32_t L_23 = V_1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24; L_24 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_22, L_23, NULL); V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_24; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = V_3; String_t* L_26; L_26 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0)), L_25, NULL); V_0 = L_26; goto IL_012d; } IL_00a2: { String_t* L_27 = ___chars0; int32_t L_28 = V_1; NullCheck(L_27); Il2CppChar L_29; L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, L_28, NULL); bool L_30; L_30 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_29, NULL); if (!L_30) { goto IL_00de; } } { int32_t L_31 = V_1; String_t* L_32 = ___chars0; NullCheck(L_32); int32_t L_33; L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add(L_31, 1))) >= ((int32_t)L_33))) { goto IL_00d1; } } { String_t* L_34 = ___chars0; int32_t L_35 = V_1; NullCheck(L_34); Il2CppChar L_36; L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_34, ((int32_t)il2cpp_codegen_add(L_35, 1)), NULL); bool L_37; L_37 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_36, NULL); if (!L_37) { goto IL_00d1; } } { int32_t L_38 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_38, 1)); goto IL_011c; } IL_00d1: { String_t* L_39; L_39 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), NULL); V_0 = L_39; goto IL_012d; } IL_00de: { String_t* L_40 = ___chars0; int32_t L_41 = V_1; NullCheck(L_40); Il2CppChar L_42; L_42 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_40, L_41, NULL); bool L_43; L_43 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_42, NULL); if (!L_43) { goto IL_011c; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_45 = L_44; String_t* L_46 = ___chars0; int32_t L_47 = V_1; NullCheck(L_46); Il2CppChar L_48; L_48 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_46, L_47, NULL); V_4 = L_48; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var))); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_49; L_49 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); String_t* L_50; L_50 = UInt32_ToString_m464396B0FE2115F3CEA38AEECDDB0FACC3AADADE((&V_4), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE)), L_49, NULL); NullCheck(L_45); ArrayElementTypeCheck (L_45, L_50); (L_45)->SetAt(static_cast(0), (RuntimeObject*)L_50); String_t* L_51; L_51 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF4ED3BDF7EB24796E98DB0F3022D762D2C5EBFB0)), L_45, NULL); V_0 = L_51; goto IL_012d; } IL_011c: { int32_t L_52 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_52, 1)); } IL_0120: { int32_t L_53 = V_1; String_t* L_54 = ___chars0; NullCheck(L_54); int32_t L_55; L_55 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_54, NULL); if ((((int32_t)L_53) < ((int32_t)L_55))) { goto IL_0037; } } { return; } IL_012d: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_56 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_57 = L_56; String_t* L_58 = ___propertyName1; NullCheck(L_57); ArrayElementTypeCheck (L_57, L_58); (L_57)->SetAt(static_cast(0), (String_t*)L_58); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_57; String_t* L_60 = V_0; NullCheck(L_59); ArrayElementTypeCheck (L_59, L_60); (L_59)->SetAt(static_cast(1), (String_t*)L_60); V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_59; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_61 = V_3; String_t* L_62; L_62 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE584C9688DCC7AEE34F2DA73D96EA113B211A93D)), L_61, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_63 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_63); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_63, L_62, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A_RuntimeMethod_var))); } IL_014d: { 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.XmlEncodedRawTextWriterIndent::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent__ctor_m7BFBA4A39946979954046339236C555015565A09 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___writer0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; XmlEncodedRawTextWriter__ctor_mF6EBA0A44503EE7400D3901E059BDFEB8110B205(__this, L_0, L_1, NULL); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1; XmlEncodedRawTextWriterIndent_Init_m572EF50317AF81603AC971ABE835C0C3A0C50B63(__this, L_2, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent__ctor_m8EF4F1D5B307902AD9CEDB88765F784F2B46B8BE (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) { { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1; XmlEncodedRawTextWriter__ctor_mEDAEC401E6AB69FC8728E0217038DFEBE2C3F564(__this, L_0, L_1, NULL); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1; XmlEncodedRawTextWriterIndent_Init_m572EF50317AF81603AC971ABE835C0C3A0C50B63(__this, L_2, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteDocType_mB5A7770BE1035377F0F25AA901CCD42CE06F519B (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { bool L_0 = __this->___mixedContent_38; if (L_0) { goto IL_001c; } } { int32_t L_1 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___textPos_9; int32_t L_2 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001c; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_001c: { String_t* L_3 = ___name0; String_t* L_4 = ___pubid1; String_t* L_5 = ___sysid2; String_t* L_6 = ___subset3; XmlEncodedRawTextWriter_WriteDocType_mDBEDCAB711092E22DFE5969871777DD43C3939EA(__this, L_3, L_4, L_5, L_6, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteStartElement_m782711D954007011AE49F992763D279A824A5B16 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { bool L_0 = __this->___mixedContent_38; if (L_0) { goto IL_001c; } } { int32_t L_1 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___textPos_9; int32_t L_2 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001c; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_001c: { int32_t L_3 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_add(L_3, 1)); BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_4 = __this->___mixedContentStack_39; bool L_5 = __this->___mixedContent_38; NullCheck(L_4); BitStack_PushBit_m1781C0D736A215362CD21AD07CAF39EE2909F718(L_4, L_5, NULL); String_t* L_6 = ___prefix0; String_t* L_7 = ___localName1; String_t* L_8 = ___ns2; XmlEncodedRawTextWriter_WriteStartElement_mCDCE55482129A24BCC95726DE611FB58CB1632EB(__this, L_6, L_7, L_8, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_StartElementContent_m873B7426A2AA0294494342F773AF45276681DC46 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___indentLevel_35; if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_001b; } } { int32_t L_1 = __this->___conformanceLevel_40; if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_001b; } } { __this->___mixedContent_38 = (bool)0; goto IL_002c; } IL_001b: { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_2 = __this->___mixedContentStack_39; NullCheck(L_2); bool L_3; L_3 = BitStack_PeekBit_m416F1BB8F64059C924312B2416CBE09747B0E1E4(L_2, NULL); __this->___mixedContent_38 = L_3; } IL_002c: { XmlEncodedRawTextWriter_StartElementContent_mD809F4166E242A11AD499962421E5883D322F44B(__this, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::OnRootElement(System.Xml.ConformanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_OnRootElement_m2BFD022CA36C2E4C8B0E17AC112E951406C21FFE (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, int32_t ___currentConformanceLevel0, const RuntimeMethod* method) { { int32_t L_0 = ___currentConformanceLevel0; __this->___conformanceLevel_40 = L_0; return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteEndElement_mAC8510AEEB7BDDAEB1BCA9F61A6DEDF0F02B1E61 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { int32_t L_0 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_subtract(L_0, 1)); bool L_1 = __this->___mixedContent_38; if (L_1) { goto IL_0038; } } { int32_t L_2 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___contentPos_10; int32_t L_3 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_0038; } } { int32_t L_4 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___textPos_9; int32_t L_5 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_4) == ((int32_t)L_5))) { goto IL_0038; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_0038: { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_6 = __this->___mixedContentStack_39; NullCheck(L_6); bool L_7; L_7 = BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3(L_6, NULL); __this->___mixedContent_38 = L_7; String_t* L_8 = ___prefix0; String_t* L_9 = ___localName1; String_t* L_10 = ___ns2; XmlEncodedRawTextWriter_WriteEndElement_m2039FDBAFF31B7BF9497D232724F9FB07ABDFC81(__this, L_8, L_9, L_10, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteFullEndElement_m9F013CCE2243C3FAC0BBD08B69602295E2554D89 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { int32_t L_0 = __this->___indentLevel_35; __this->___indentLevel_35 = ((int32_t)il2cpp_codegen_subtract(L_0, 1)); bool L_1 = __this->___mixedContent_38; if (L_1) { goto IL_0038; } } { int32_t L_2 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___contentPos_10; int32_t L_3 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_0038; } } { int32_t L_4 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___textPos_9; int32_t L_5 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_4) == ((int32_t)L_5))) { goto IL_0038; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_0038: { BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_6 = __this->___mixedContentStack_39; NullCheck(L_6); bool L_7; L_7 = BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3(L_6, NULL); __this->___mixedContent_38 = L_7; String_t* L_8 = ___prefix0; String_t* L_9 = ___localName1; String_t* L_10 = ___ns2; XmlEncodedRawTextWriter_WriteFullEndElement_m3F8608DE81F8F61E9990264D050AE6579BBD6FE5(__this, L_8, L_9, L_10, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteStartAttribute_mFA1438A2BEBBC9B7D478BD9FBBE1714BC9244C73 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { bool L_0 = __this->___newLineOnAttributes_36; if (!L_0) { goto IL_000e; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_000e: { String_t* L_1 = ___prefix0; String_t* L_2 = ___localName1; String_t* L_3 = ___ns2; XmlEncodedRawTextWriter_WriteStartAttribute_mDD0E306F666655493413D9CECDD048D53711CCFA(__this, L_1, L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteCData_mA762617841904DAD95A982EF9BEADAB70874F068 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___text0, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; String_t* L_0 = ___text0; XmlEncodedRawTextWriter_WriteCData_m2FD4BC6708C8A44B301A07F379CE77704EEC3849(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteComment_m4CF65F58DC88619B3BDA7E938FD1ECAA4F639A67 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___text0, const RuntimeMethod* method) { { bool L_0 = __this->___mixedContent_38; if (L_0) { goto IL_001c; } } { int32_t L_1 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___textPos_9; int32_t L_2 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001c; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_001c: { String_t* L_3 = ___text0; XmlEncodedRawTextWriter_WriteComment_m61806CB2EAC9543B6C217B690AF069ECBC3F6020(__this, L_3, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteProcessingInstruction_m7D71C8D58CD89329B07B04ED1F6ED25CBAE75B6D (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___target0, String_t* ___text1, const RuntimeMethod* method) { { bool L_0 = __this->___mixedContent_38; if (L_0) { goto IL_001c; } } { int32_t L_1 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___textPos_9; int32_t L_2 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___bufPos_8; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_001c; } } { XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688(__this, NULL); } IL_001c: { String_t* L_3 = ___target0; String_t* L_4 = ___text1; XmlEncodedRawTextWriter_WriteProcessingInstruction_m7C95C598CABA1C1FC3EE7F67E4480B4C7F832355(__this, L_3, L_4, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteEntityRef_m0CE2DF089105DC6FA9066618FFBD190C02EF1E82 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___name0, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; String_t* L_0 = ___name0; XmlEncodedRawTextWriter_WriteEntityRef_mDBB5C2F883A9957C5DDE2D8A59A7A33DEF15DDF2(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteCharEntity_m04A00102E974786210AD461534FD71BECDD135B8 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; Il2CppChar L_0 = ___ch0; XmlEncodedRawTextWriter_WriteCharEntity_mA93124CDD6A6DFD37DFA3F612C1911DF98CFE434(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteSurrogateCharEntity_m5D9792944458491B6EE8FC84EF0BBB2B53744507 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; Il2CppChar L_0 = ___lowChar0; Il2CppChar L_1 = ___highChar1; XmlEncodedRawTextWriter_WriteSurrogateCharEntity_mC29AC47472E1C4CC4E2FBD4E36900D948766B6A6(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteWhitespace_m376701E4C3BE2FFA6E8DED521BA3D1EED442F65F (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___ws0, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; String_t* L_0 = ___ws0; XmlEncodedRawTextWriter_WriteWhitespace_mFA9FBE6D75A686D9452C0783D1F1EBAAAB6DD05A(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteString_m0A3B896B347CFE43C7BB0C2982E54FD92E6CC21B (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___text0, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; String_t* L_0 = ___text0; XmlEncodedRawTextWriter_WriteString_mA1C3CF752273BA33AC2C9E63C378C5FF0F509CF7(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteChars_m47B944A417D43EC0F0EEAE5AC986C39FE60FB9F1 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; XmlEncodedRawTextWriter_WriteChars_m199ABAEC5FBFBB7C234A304D5094F58D48ADFB07(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteRaw_m8DB905A89F5DBC0919437F21866327D9B7B24175 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; XmlEncodedRawTextWriter_WriteRaw_m377C81F6B413480998B3FFBE321070D4B3E3959C(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteRaw_mA06FFA11BD1FA6E92FEA13B5985F213085C3BFCF (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, String_t* ___data0, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; String_t* L_0 = ___data0; XmlEncodedRawTextWriter_WriteRaw_m1D3A9B40867F3EC1B58D63EAF9F9E8B79446E5A6(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteBase64(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteBase64_mB2986E29B63CCE413722043834909309C620678C (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { __this->___mixedContent_38 = (bool)1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; XmlRawWriter_WriteBase64_m3B717B23DDCA782AE1ECD2770444F8978EB12D4C(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::Init(System.Xml.XmlWriterSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_Init_m572EF50317AF81603AC971ABE835C0C3A0C50B63 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5); s_Il2CppMethodInitialized = true; } { __this->___indentLevel_35 = 0; XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings0; NullCheck(L_0); String_t* L_1; L_1 = XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline(L_0, NULL); __this->___indentChars_37 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___indentChars_37), (void*)L_1); XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings0; NullCheck(L_2); bool L_3; L_3 = XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline(L_2, NULL); __this->___newLineOnAttributes_36 = L_3; BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_4 = (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C*)il2cpp_codegen_object_new(BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var); NullCheck(L_4); BitStack__ctor_m9BADB5496087F772604E9F62D3B18C07630EA45A(L_4, NULL); __this->___mixedContentStack_39 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___mixedContentStack_39), (void*)L_4); bool L_5 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___checkCharacters_30; if (!L_5) { goto IL_008b; } } { bool L_6 = __this->___newLineOnAttributes_36; if (!L_6) { goto IL_005f; } } { String_t* L_7 = __this->___indentChars_37; XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A(__this, L_7, _stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5, (bool)1, NULL); String_t* L_8 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___newLineChars_29; XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A(__this, L_8, _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3, (bool)1, NULL); return; } IL_005f: { String_t* L_9 = __this->___indentChars_37; XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A(__this, L_9, _stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5, (bool)0, NULL); int32_t L_10 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___newLineHandling_26; if (!L_10) { goto IL_008b; } } { String_t* L_11 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___newLineChars_29; XmlEncodedRawTextWriter_ValidateContentChars_m4A96FBCBCF892A39F8843112E87937B945805A4A(__this, L_11, _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3, (bool)0, NULL); } IL_008b: { return; } } // System.Void System.Xml.XmlEncodedRawTextWriterIndent::WriteIndent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent_WriteIndent_m579A5566689FB860B1BEE231EDD627297F5DA688 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ((XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)__this)->___newLineChars_29; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_0, NULL); int32_t L_1 = __this->___indentLevel_35; V_0 = L_1; goto IL_0025; } IL_0015: { String_t* L_2 = __this->___indentChars_37; XmlEncodedRawTextWriter_RawText_mC84BDBEA6E407E60868A66C643A352ECB575610C(__this, L_2, NULL); int32_t L_3 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1)); } IL_0025: { int32_t L_4 = V_0; if ((((int32_t)L_4) > ((int32_t)0))) { goto IL_0015; } } { 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.XmlEventCache::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache__ctor_mBA3535680DEC05967B45C29EACDC95374C231C36 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___baseUri0, bool ___hasRootNode1, const RuntimeMethod* method) { { XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989(__this, NULL); String_t* L_0 = ___baseUri0; __this->___baseUri_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseUri_8), (void*)L_0); bool L_1 = ___hasRootNode1; __this->___hasRootNode_6 = L_1; return; } } // System.Void System.Xml.XmlEventCache::EndEvents() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_EndEvents_m14930E127C0BC8C9139CC572BC1238721698075A (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { { StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_0 = (&__this->___singleText_7); int32_t L_1; L_1 = StringConcat_get_Count_mDCCC5B17A9A44FD12C76AAB3429C50663D243BDC_inline(L_0, NULL); if (L_1) { goto IL_0014; } } { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, 0, NULL); } IL_0014: { return; } } // System.Void System.Xml.XmlEventCache::EventsToWriter(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_EventsToWriter_m80E785FE11C18BA12E44016345E1F26273F4E361 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m2DA323B178A37D487CFE4D93F59290B37468AE6A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m3104C5DB2248D9BA223DD03C2192F5FFC916FE36_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); s_Il2CppMethodInitialized = true; } XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_4 = NULL; XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* V_5 = NULL; int32_t V_6 = 0; { StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_0 = (&__this->___singleText_7); int32_t L_1; L_1 = StringConcat_get_Count_mDCCC5B17A9A44FD12C76AAB3429C50663D243BDC_inline(L_0, NULL); if (!L_1) { goto IL_001f; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = ___writer0; StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_3 = (&__this->___singleText_7); String_t* L_4; L_4 = StringConcat_GetResult_mE64A54D6A86088207D9DD7FF3E44728B139A2F05(L_3, NULL); NullCheck(L_2); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_2, L_4); return; } IL_001f: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_5 = ___writer0; V_5 = ((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)IsInstClass((RuntimeObject*)L_5, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var)); V_1 = 0; goto IL_03f2; } IL_002e: { List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_6 = __this->___pages_3; int32_t L_7 = V_1; NullCheck(L_6); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_8; L_8 = List_1_get_Item_m3104C5DB2248D9BA223DD03C2192F5FFC916FE36(L_6, L_7, List_1_get_Item_m3104C5DB2248D9BA223DD03C2192F5FFC916FE36_RuntimeMethod_var); V_0 = L_8; V_2 = 0; goto IL_03e5; } IL_0042: { XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_9 = V_0; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11; L_11 = XmlEvent_get_EventType_m038BF9FCEE1E88C68C6E53DA3EB97B8D1E4639F7_inline(((L_9)->GetAddressAt(static_cast(L_10))), NULL); V_6 = L_11; int32_t L_12 = V_6; switch (L_12) { case 0: { goto IL_00c4; } case 1: { goto IL_00c5; } case 2: { goto IL_0105; } case 3: { goto IL_0134; } case 4: { goto IL_0163; } case 5: { goto IL_016e; } case 6: { goto IL_0185; } case 7: { goto IL_019c; } case 8: { goto IL_01bf; } case 9: { goto IL_01d6; } case 10: { goto IL_01ed; } case 11: { goto IL_0204; } case 12: { goto IL_021b; } case 13: { goto IL_0237; } case 14: { goto IL_025d; } case 15: { goto IL_027f; } case 16: { goto IL_02a1; } case 17: { goto IL_02c5; } case 18: { goto IL_02e4; } case 19: { goto IL_02f7; } case 20: { goto IL_0336; } case 21: { goto IL_036f; } case 22: { goto IL_03be; } case 23: { goto IL_03cb; } case 24: { goto IL_03d3; } case 25: { goto IL_03db; } } } { goto IL_03e1; } IL_00c4: { return; } IL_00c5: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_14 = V_0; int32_t L_15 = V_2; NullCheck(L_14); String_t* L_16; L_16 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_14)->GetAddressAt(static_cast(L_15))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_17 = V_0; int32_t L_18 = V_2; NullCheck(L_17); String_t* L_19; L_19 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_17)->GetAddressAt(static_cast(L_18))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_20 = V_0; int32_t L_21 = V_2; NullCheck(L_20); String_t* L_22; L_22 = XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline(((L_20)->GetAddressAt(static_cast(L_21))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_23 = V_0; int32_t L_24 = V_2; NullCheck(L_23); RuntimeObject* L_25; L_25 = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(((L_23)->GetAddressAt(static_cast(L_24))), NULL); NullCheck(L_13); VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, L_13, L_16, L_19, L_22, ((String_t*)CastclassSealed((RuntimeObject*)L_25, String_t_il2cpp_TypeInfo_var))); goto IL_03e1; } IL_0105: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_26 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_27 = V_0; int32_t L_28 = V_2; NullCheck(L_27); String_t* L_29; L_29 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_27)->GetAddressAt(static_cast(L_28))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_30 = V_0; int32_t L_31 = V_2; NullCheck(L_30); String_t* L_32; L_32 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_30)->GetAddressAt(static_cast(L_31))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_33 = V_0; int32_t L_34 = V_2; NullCheck(L_33); String_t* L_35; L_35 = XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline(((L_33)->GetAddressAt(static_cast(L_34))), NULL); NullCheck(L_26); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_26, L_29, L_32, L_35); goto IL_03e1; } IL_0134: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_36 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_37 = V_0; int32_t L_38 = V_2; NullCheck(L_37); String_t* L_39; L_39 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_37)->GetAddressAt(static_cast(L_38))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_40 = V_0; int32_t L_41 = V_2; NullCheck(L_40); String_t* L_42; L_42 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_40)->GetAddressAt(static_cast(L_41))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_43 = V_0; int32_t L_44 = V_2; NullCheck(L_43); String_t* L_45; L_45 = XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline(((L_43)->GetAddressAt(static_cast(L_44))), NULL); NullCheck(L_36); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_36, L_39, L_42, L_45); goto IL_03e1; } IL_0163: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_46 = ___writer0; NullCheck(L_46); VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_46); goto IL_03e1; } IL_016e: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_47 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_48 = V_0; int32_t L_49 = V_2; NullCheck(L_48); String_t* L_50; L_50 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_48)->GetAddressAt(static_cast(L_49))), NULL); NullCheck(L_47); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_47, L_50); goto IL_03e1; } IL_0185: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_51 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_52 = V_0; int32_t L_53 = V_2; NullCheck(L_52); String_t* L_54; L_54 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_52)->GetAddressAt(static_cast(L_53))), NULL); NullCheck(L_51); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_51, L_54); goto IL_03e1; } IL_019c: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_55 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_56 = V_0; int32_t L_57 = V_2; NullCheck(L_56); String_t* L_58; L_58 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_56)->GetAddressAt(static_cast(L_57))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_59 = V_0; int32_t L_60 = V_2; NullCheck(L_59); String_t* L_61; L_61 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_59)->GetAddressAt(static_cast(L_60))), NULL); NullCheck(L_55); VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_55, L_58, L_61); goto IL_03e1; } IL_01bf: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_62 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_63 = V_0; int32_t L_64 = V_2; NullCheck(L_63); String_t* L_65; L_65 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_63)->GetAddressAt(static_cast(L_64))), NULL); NullCheck(L_62); VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_62, L_65); goto IL_03e1; } IL_01d6: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_66 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_67 = V_0; int32_t L_68 = V_2; NullCheck(L_67); String_t* L_69; L_69 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_67)->GetAddressAt(static_cast(L_68))), NULL); NullCheck(L_66); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_66, L_69); goto IL_03e1; } IL_01ed: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_70 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_71 = V_0; int32_t L_72 = V_2; NullCheck(L_71); String_t* L_73; L_73 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_71)->GetAddressAt(static_cast(L_72))), NULL); NullCheck(L_70); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_70, L_73); goto IL_03e1; } IL_0204: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_74 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_75 = V_0; int32_t L_76 = V_2; NullCheck(L_75); String_t* L_77; L_77 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_75)->GetAddressAt(static_cast(L_76))), NULL); NullCheck(L_74); VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_74, L_77); goto IL_03e1; } IL_021b: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_78 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_79 = V_0; int32_t L_80 = V_2; NullCheck(L_79); RuntimeObject* L_81; L_81 = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(((L_79)->GetAddressAt(static_cast(L_80))), NULL); NullCheck(L_78); VirtualActionInvoker1< Il2CppChar >::Invoke(18 /* System.Void System.Xml.XmlWriter::WriteCharEntity(System.Char) */, L_78, ((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_81, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))))); goto IL_03e1; } IL_0237: { XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_82 = V_0; int32_t L_83 = V_2; NullCheck(L_82); RuntimeObject* L_84; L_84 = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(((L_82)->GetAddressAt(static_cast(L_83))), NULL); V_4 = ((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)Castclass((RuntimeObject*)L_84, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var)); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_85 = ___writer0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_86 = V_4; NullCheck(L_86); int32_t L_87 = 0; uint16_t L_88 = (uint16_t)(L_86)->GetAt(static_cast(L_87)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_89 = V_4; NullCheck(L_89); int32_t L_90 = 1; uint16_t L_91 = (uint16_t)(L_89)->GetAt(static_cast(L_90)); NullCheck(L_85); VirtualActionInvoker2< Il2CppChar, Il2CppChar >::Invoke(21 /* System.Void System.Xml.XmlWriter::WriteSurrogateCharEntity(System.Char,System.Char) */, L_85, L_88, L_91); goto IL_03e1; } IL_025d: { XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_92 = V_0; int32_t L_93 = V_2; NullCheck(L_92); RuntimeObject* L_94; L_94 = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(((L_92)->GetAddressAt(static_cast(L_93))), NULL); V_3 = ((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)Castclass((RuntimeObject*)L_94, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var)); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_95 = ___writer0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_96 = V_3; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_97 = V_3; NullCheck(L_97); NullCheck(L_95); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(25 /* System.Void System.Xml.XmlWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) */, L_95, L_96, 0, ((int32_t)(((RuntimeArray*)L_97)->max_length))); goto IL_03e1; } IL_027f: { XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_98 = V_0; int32_t L_99 = V_2; NullCheck(L_98); RuntimeObject* L_100; L_100 = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(((L_98)->GetAddressAt(static_cast(L_99))), NULL); V_3 = ((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)Castclass((RuntimeObject*)L_100, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var)); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_101 = ___writer0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_102 = V_3; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_103 = V_3; NullCheck(L_103); NullCheck(L_101); VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(26 /* System.Void System.Xml.XmlWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32) */, L_101, L_102, 0, ((int32_t)(((RuntimeArray*)L_103)->max_length))); goto IL_03e1; } IL_02a1: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_104 = V_5; if (!L_104) { goto IL_03e1; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_105 = V_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_106 = V_0; int32_t L_107 = V_2; NullCheck(L_106); RuntimeObject* L_108; L_108 = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(((L_106)->GetAddressAt(static_cast(L_107))), NULL); NullCheck(L_105); VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, L_105, ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_108, XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441_il2cpp_TypeInfo_var))))); goto IL_03e1; } IL_02c5: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_109 = V_5; if (!L_109) { goto IL_03e1; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_110 = V_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_111 = V_0; int32_t L_112 = V_2; NullCheck(L_111); String_t* L_113; L_113 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_111)->GetAddressAt(static_cast(L_112))), NULL); NullCheck(L_110); VirtualActionInvoker1< String_t* >::Invoke(37 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.String) */, L_110, L_113); goto IL_03e1; } IL_02e4: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_114 = V_5; if (!L_114) { goto IL_03e1; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_115 = V_5; NullCheck(L_115); VirtualActionInvoker0::Invoke(38 /* System.Void System.Xml.XmlRawWriter::StartElementContent() */, L_115); goto IL_03e1; } IL_02f7: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_116 = V_5; if (!L_116) { goto IL_032b; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_117 = V_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_118 = V_0; int32_t L_119 = V_2; NullCheck(L_118); String_t* L_120; L_120 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_118)->GetAddressAt(static_cast(L_119))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_121 = V_0; int32_t L_122 = V_2; NullCheck(L_121); String_t* L_123; L_123 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_121)->GetAddressAt(static_cast(L_122))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_124 = V_0; int32_t L_125 = V_2; NullCheck(L_124); String_t* L_126; L_126 = XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline(((L_124)->GetAddressAt(static_cast(L_125))), NULL); NullCheck(L_117); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(40 /* System.Void System.Xml.XmlRawWriter::WriteEndElement(System.String,System.String,System.String) */, L_117, L_120, L_123, L_126); goto IL_03e1; } IL_032b: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_127 = ___writer0; NullCheck(L_127); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_127); goto IL_03e1; } IL_0336: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_128 = V_5; if (!L_128) { goto IL_0367; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_129 = V_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_130 = V_0; int32_t L_131 = V_2; NullCheck(L_130); String_t* L_132; L_132 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_130)->GetAddressAt(static_cast(L_131))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_133 = V_0; int32_t L_134 = V_2; NullCheck(L_133); String_t* L_135; L_135 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_133)->GetAddressAt(static_cast(L_134))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_136 = V_0; int32_t L_137 = V_2; NullCheck(L_136); String_t* L_138; L_138 = XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline(((L_136)->GetAddressAt(static_cast(L_137))), NULL); NullCheck(L_129); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(41 /* System.Void System.Xml.XmlRawWriter::WriteFullEndElement(System.String,System.String,System.String) */, L_129, L_132, L_135, L_138); goto IL_03e1; } IL_0367: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_139 = ___writer0; NullCheck(L_139); VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_139); goto IL_03e1; } IL_036f: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_140 = V_5; if (!L_140) { goto IL_0394; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_141 = V_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_142 = V_0; int32_t L_143 = V_2; NullCheck(L_142); String_t* L_144; L_144 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_142)->GetAddressAt(static_cast(L_143))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_145 = V_0; int32_t L_146 = V_2; NullCheck(L_145); String_t* L_147; L_147 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_145)->GetAddressAt(static_cast(L_146))), NULL); NullCheck(L_141); VirtualActionInvoker2< String_t*, String_t* >::Invoke(42 /* System.Void System.Xml.XmlRawWriter::WriteNamespaceDeclaration(System.String,System.String) */, L_141, L_144, L_147); goto IL_03e1; } IL_0394: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_148 = ___writer0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_149 = V_0; int32_t L_150 = V_2; NullCheck(L_149); String_t* L_151; L_151 = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(((L_149)->GetAddressAt(static_cast(L_150))), NULL); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_152 = V_0; int32_t L_153 = V_2; NullCheck(L_152); String_t* L_154; L_154 = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(((L_152)->GetAddressAt(static_cast(L_153))), NULL); NullCheck(L_148); XmlWriter_WriteAttributeString_m9BECE5A394F9A9601AB66932AF0D7EF25E16AE0B(L_148, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_151, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_154, NULL); goto IL_03e1; } IL_03be: { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_155 = V_5; if (!L_155) { goto IL_03e1; } } { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_156 = V_5; NullCheck(L_156); VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlRawWriter::WriteEndBase64() */, L_156); goto IL_03e1; } IL_03cb: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_157 = ___writer0; NullCheck(L_157); VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, L_157); goto IL_03e1; } IL_03d3: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_158 = ___writer0; NullCheck(L_158); VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_158); goto IL_03e1; } IL_03db: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_159 = ___writer0; NullCheck(L_159); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_159); } IL_03e1: { int32_t L_160 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_160, 1)); } IL_03e5: { int32_t L_161 = V_2; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_162 = V_0; NullCheck(L_162); if ((((int32_t)L_161) < ((int32_t)((int32_t)(((RuntimeArray*)L_162)->max_length))))) { goto IL_0042; } } { int32_t L_163 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_163, 1)); } IL_03f2: { int32_t L_164 = V_1; List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_165 = __this->___pages_3; NullCheck(L_165); int32_t L_166; L_166 = List_1_get_Count_m2DA323B178A37D487CFE4D93F59290B37468AE6A_inline(L_165, List_1_get_Count_m2DA323B178A37D487CFE4D93F59290B37468AE6A_RuntimeMethod_var); if ((((int32_t)L_164) < ((int32_t)L_166))) { goto IL_002e; } } { return; } } // System.Void System.Xml.XmlEventCache::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteDocType_m7834378C5A4DD1B478ED65EF4F786BBCDAC9E334 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { String_t* L_0 = ___name0; String_t* L_1 = ___pubid1; String_t* L_2 = ___sysid2; String_t* L_3 = ___subset3; XmlEventCache_AddEvent_mC00D6911AF0D2B91232B9984A0DF7D207CE8EB52(__this, 1, L_0, L_1, L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteStartElement_m257251FDB80A0CE91BA89EA1CEBC17F25151AFE9 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___ns2; XmlEventCache_AddEvent_m386A5AA3E1C2993210B54F119A7CA259777E780F(__this, 2, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteStartAttribute_mD708B150DD5E653CDB913E9FC606CB9C2DCA2310 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___ns2; XmlEventCache_AddEvent_m386A5AA3E1C2993210B54F119A7CA259777E780F(__this, 3, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteEndAttribute_m30E72F3661D462BA5D5DA35AB50279551CB92D9E (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, 4, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteCData_m31AAC94BF1C195BF3399A431A26CFBF6FB6F18AC (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, 5, L_0, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteComment_mF81FB242FC07DF94BCF3B3F9E4606D8F5BEB3B5C (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, 6, L_0, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteProcessingInstruction_m0410A66735A707D150CBF5DF2FE55ADEC05740C3 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { { String_t* L_0 = ___name0; String_t* L_1 = ___text1; XmlEventCache_AddEvent_mE5A355BF13AD4002FB94B2D64C22B5F48E2314E8(__this, 7, L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteWhitespace_m1B1344DC4DCC2B1E38F4E5D67D15A600629AD03F (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___ws0, const RuntimeMethod* method) { { String_t* L_0 = ___ws0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, 8, L_0, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteString_mEDB64E0BEBF5DD60996D4ACB1C14C6A90DC7EAD0 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___text0, const RuntimeMethod* method) { { List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_0 = __this->___pages_3; if (L_0) { goto IL_0015; } } { StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_1 = (&__this->___singleText_7); String_t* L_2 = ___text0; StringConcat_ConcatNoDelimiter_mA0E6ECB03B5D0C889C3CF673D27F2111ABD68C9C(L_1, L_2, NULL); return; } IL_0015: { String_t* L_3 = ___text0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, ((int32_t)9), L_3, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteChars_m38B87A5F9AD97426095EB5ECFD7E16F964209D43 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; String_t* L_3; L_3 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, L_2, NULL); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlEventCache::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteRaw_m1031F8198DC4D033620B4DC0711CB0CE0AE06EB9 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; String_t* L_3; L_3 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, L_2, NULL); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlEventCache::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteRaw_m3B39C7B7529A79CF4E5B14B9B7AE344F13BF5BB7 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___data0, const RuntimeMethod* method) { { String_t* L_0 = ___data0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, ((int32_t)10), L_0, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteEntityRef_mCA5DB26044EF049C1B34C1E42B2C46713C8C6624 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___name0, const RuntimeMethod* method) { { String_t* L_0 = ___name0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, ((int32_t)11), L_0, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteCharEntity_mC54843B3FCF7A012309130C7C8EB76A2913DF87F (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; Il2CppChar L_1 = L_0; RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1); XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50(__this, ((int32_t)12), L_2, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteSurrogateCharEntity_m7DCCC12B9D8B564B7490310C727EFE204DD66D92 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; Il2CppChar L_2 = ___lowChar0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (Il2CppChar)L_2); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_1; Il2CppChar L_4 = ___highChar1; NullCheck(L_3); (L_3)->SetAt(static_cast(1), (Il2CppChar)L_4); V_0 = L_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = V_0; XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50(__this, ((int32_t)13), (RuntimeObject*)L_5, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteBase64(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteBase64_m3BB03A84F5C76CEB50C6C059D93D30B766F4665B (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3; L_3 = XmlEventCache_ToBytes_mC79174A9CF4B8598BC9940E2A8DC7091E27FE194(L_0, L_1, L_2, NULL); XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50(__this, ((int32_t)14), (RuntimeObject*)L_3, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteBinHex(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteBinHex_mBEFD1D3B26F39644EA90ED1586FC2089490E6D2E (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3; L_3 = XmlEventCache_ToBytes_mC79174A9CF4B8598BC9940E2A8DC7091E27FE194(L_0, L_1, L_2, NULL); XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50(__this, ((int32_t)15), (RuntimeObject*)L_3, NULL); return; } } // System.Void System.Xml.XmlEventCache::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_Close_mB05EF1A2CB69954D06BC2D257E6FDD52D1E1A701 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, ((int32_t)23), NULL); return; } } // System.Void System.Xml.XmlEventCache::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_Flush_mA491B33FFBCCC9E56057FA60DC1D9B17D4AA22E2 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, ((int32_t)24), NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteValue_mC47EAFB1CFE81614F2B5317DF9E9DF22C1721A89 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_0); return; } } // System.Void System.Xml.XmlEventCache::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_Dispose_m907131956DCB17B534B1C20AA108310A1DBB4566 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, bool ___disposing0, const RuntimeMethod* method) { { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_000d: {// begin finally (depth: 1) bool L_0 = ___disposing0; XmlWriter_Dispose_m85892819F0A87F253D548139924CE7950DA5D64D(__this, L_0, NULL); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { bool L_1 = ___disposing0; if (!L_1) { goto IL_000b_1; } } { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, ((int32_t)25), NULL); } IL_000b_1: { goto IL_0015; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0015: { return; } } // System.Void System.Xml.XmlEventCache::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteXmlDeclaration_m0E1E72335B3449D2FFA57251244AB7CCB6590120 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___standalone0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___standalone0; int32_t L_1 = L_0; RuntimeObject* L_2 = Box(XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441_il2cpp_TypeInfo_var, &L_1); XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50(__this, ((int32_t)16), L_2, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteXmlDeclaration_m2D8F0F439DA282DFF0141C7803DE66C910D7F7FA (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { { String_t* L_0 = ___xmldecl0; XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294(__this, ((int32_t)17), L_0, NULL); return; } } // System.Void System.Xml.XmlEventCache::StartElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_StartElementContent_m0CA9A17E653450E87BA95D43E4E7AA8E461B4E23 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, ((int32_t)18), NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteEndElement_mCEB7CD4ABC5DFA79A6D4D27FEBE52A258B081067 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___ns2; XmlEventCache_AddEvent_m386A5AA3E1C2993210B54F119A7CA259777E780F(__this, ((int32_t)19), L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteFullEndElement_m7FB1986987552F42C41A8D72448BF45CB107F882 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___ns2; XmlEventCache_AddEvent_m386A5AA3E1C2993210B54F119A7CA259777E780F(__this, ((int32_t)20), L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteNamespaceDeclaration(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteNamespaceDeclaration_mF823264C10ADA3CD8B46F7AA42821C0AAF5EA2B2 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___ns1; XmlEventCache_AddEvent_mE5A355BF13AD4002FB94B2D64C22B5F48E2314E8(__this, ((int32_t)21), L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlEventCache::WriteEndBase64() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_WriteEndBase64_mBCA4F26EFFB6CFA1DA602706913F8B73F768F156 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { { XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232(__this, ((int32_t)22), NULL); return; } } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_m67EFE4E3D1F12953DFF24BF760C9F181005F5232 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7(__this, NULL); V_0 = L_0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_1 = __this->___pageCurr_4; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ___eventType0; XmlEvent_InitEvent_m20FCF4B1533AD8E1D2C319BC1566FC2DE164593D_inline(((L_1)->GetAddressAt(static_cast(L_2))), L_3, NULL); return; } } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mE45FD0216F230BC9462003BC42923A124865F294 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7(__this, NULL); V_0 = L_0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_1 = __this->___pageCurr_4; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ___eventType0; String_t* L_4 = ___s11; XmlEvent_InitEvent_m5CE1F84C43F00B2C200634DB1F2699EF9969AC4C(((L_1)->GetAddressAt(static_cast(L_2))), L_3, L_4, NULL); return; } } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mE5A355BF13AD4002FB94B2D64C22B5F48E2314E8 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7(__this, NULL); V_0 = L_0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_1 = __this->___pageCurr_4; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ___eventType0; String_t* L_4 = ___s11; String_t* L_5 = ___s22; XmlEvent_InitEvent_m2C8AA9A043EEBD8F233FB8D941307383D6408D69(((L_1)->GetAddressAt(static_cast(L_2))), L_3, L_4, L_5, NULL); return; } } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_m386A5AA3E1C2993210B54F119A7CA259777E780F (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7(__this, NULL); V_0 = L_0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_1 = __this->___pageCurr_4; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ___eventType0; String_t* L_4 = ___s11; String_t* L_5 = ___s22; String_t* L_6 = ___s33; XmlEvent_InitEvent_mE72CDB2DD41BD005EAC97578F92F1B29C125F4C4(((L_1)->GetAddressAt(static_cast(L_2))), L_3, L_4, L_5, L_6, NULL); return; } } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mC00D6911AF0D2B91232B9984A0DF7D207CE8EB52 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, RuntimeObject* ___o4, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7(__this, NULL); V_0 = L_0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_1 = __this->___pageCurr_4; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ___eventType0; String_t* L_4 = ___s11; String_t* L_5 = ___s22; String_t* L_6 = ___s33; RuntimeObject* L_7 = ___o4; XmlEvent_InitEvent_mA6558E961CD189560195579C1AA91A117D94B276(((L_1)->GetAddressAt(static_cast(L_2))), L_3, L_4, L_5, L_6, L_7, NULL); return; } } // System.Void System.Xml.XmlEventCache::AddEvent(System.Xml.XmlEventCache/XmlEventType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEventCache_AddEvent_mA4D4885500884E85CFBF6ABEBC66A2FB4BA3ED50 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, int32_t ___eventType0, RuntimeObject* ___o1, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7(__this, NULL); V_0 = L_0; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_1 = __this->___pageCurr_4; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ___eventType0; RuntimeObject* L_4 = ___o1; XmlEvent_InitEvent_m450055081140BDF68AF5E4C26CDE99127C038238(((L_1)->GetAddressAt(static_cast(L_2))), L_3, L_4, NULL); return; } } // System.Int32 System.Xml.XmlEventCache::NewEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEventCache_NewEvent_m95BEFFF9D248B5767BDEC14F55751790BC7B42A7 (XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC3AA2A570543C0B07E620F2C594BD268BF5819C7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_0 = __this->___pages_3; if (L_0) { goto IL_0077; } } { List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_1 = (List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4*)il2cpp_codegen_object_new(List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4_il2cpp_TypeInfo_var); NullCheck(L_1); List_1__ctor_mC3AA2A570543C0B07E620F2C594BD268BF5819C7(L_1, List_1__ctor_mC3AA2A570543C0B07E620F2C594BD268BF5819C7_RuntimeMethod_var); __this->___pages_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___pages_3), (void*)L_1); XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_2 = (XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2*)(XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2*)SZArrayNew(XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->___pageCurr_4 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___pageCurr_4), (void*)L_2); List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_3 = __this->___pages_3; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_4 = __this->___pageCurr_4; NullCheck(L_3); List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_inline(L_3, L_4, List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_RuntimeMethod_var); StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_5 = (&__this->___singleText_7); int32_t L_6; L_6 = StringConcat_get_Count_mDCCC5B17A9A44FD12C76AAB3429C50663D243BDC_inline(L_5, NULL); if (!L_6) { goto IL_00b2; } } { XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_7 = __this->___pageCurr_4; NullCheck(L_7); StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_8 = (&__this->___singleText_7); String_t* L_9; L_9 = StringConcat_GetResult_mE64A54D6A86088207D9DD7FF3E44728B139A2F05(L_8, NULL); XmlEvent_InitEvent_m5CE1F84C43F00B2C200634DB1F2699EF9969AC4C(((L_7)->GetAddressAt(static_cast(0))), ((int32_t)9), L_9, NULL); int32_t L_10 = __this->___pageSize_5; __this->___pageSize_5 = ((int32_t)il2cpp_codegen_add(L_10, 1)); StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* L_11 = (&__this->___singleText_7); StringConcat_Clear_m0031C7E309300FC0D9CAD0821F1E9966E8095439(L_11, NULL); goto IL_00b2; } IL_0077: { int32_t L_12 = __this->___pageSize_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_13 = __this->___pageCurr_4; NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))) { goto IL_00b2; } } { int32_t L_14 = __this->___pageSize_5; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_15 = (XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2*)(XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2*)SZArrayNew(XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_14, 2))); __this->___pageCurr_4 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___pageCurr_4), (void*)L_15); List_1_tD9B750FF9537276DA20E7B5F19B51A67A2B147F4* L_16 = __this->___pages_3; XmlEventU5BU5D_t9B0948C5BC3C8285A5EBE47A7A7C604859A399A2* L_17 = __this->___pageCurr_4; NullCheck(L_16); List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_inline(L_16, L_17, List_1_Add_m339435979FA5EA6627EE599A57571AF011676F5E_RuntimeMethod_var); __this->___pageSize_5 = 0; } IL_00b2: { int32_t L_18 = __this->___pageSize_5; V_0 = L_18; int32_t L_19 = V_0; __this->___pageSize_5 = ((int32_t)il2cpp_codegen_add(L_19, 1)); int32_t L_20 = V_0; return L_20; } } // System.Byte[] System.Xml.XmlEventCache::ToBytes(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* XmlEventCache_ToBytes_mC79174A9CF4B8598BC9940E2A8DC7091E27FE194 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL; { int32_t L_0 = ___index1; if (L_0) { goto IL_0009; } } { int32_t L_1 = ___count2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___buffer0; NullCheck(L_2); if ((((int32_t)L_1) == ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) { goto IL_002b; } } IL_0009: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0; NullCheck(L_3); int32_t L_4 = ___index1; int32_t L_5 = ___count2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_3)->max_length)), L_4))) <= ((int32_t)L_5))) { goto IL_0018; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___buffer0; NullCheck(L_6); int32_t L_7 = ___index1; ___count2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), L_7)); } IL_0018: { int32_t L_8 = ___count2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_8); V_0 = L_9; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___buffer0; int32_t L_11 = ___index1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = V_0; int32_t L_13 = ___count2; Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_10, L_11, (RuntimeArray*)L_12, 0, L_13, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_0; return L_14; } IL_002b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = ___buffer0; return L_15; } } #ifdef __clang__ #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 // Conversion methods for marshalling of: System.Xml.XmlEventCache/XmlEvent IL2CPP_EXTERN_C void XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshal_pinvoke(const XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2& unmarshaled, XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_pinvoke& marshaled) { marshaled.___eventType_0 = unmarshaled.___eventType_0; marshaled.___s1_1 = il2cpp_codegen_marshal_string(unmarshaled.___s1_1); marshaled.___s2_2 = il2cpp_codegen_marshal_string(unmarshaled.___s2_2); marshaled.___s3_3 = il2cpp_codegen_marshal_string(unmarshaled.___s3_3); if (unmarshaled.___o_4 != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___o_4)) { marshaled.___o_4 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.___o_4)); (marshaled.___o_4)->AddRef(); } else { marshaled.___o_4 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.___o_4); } } else { marshaled.___o_4 = NULL; } } IL2CPP_EXTERN_C void XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshal_pinvoke_back(const XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_pinvoke& marshaled, XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaledeventType_temp_0 = 0; unmarshaledeventType_temp_0 = marshaled.___eventType_0; unmarshaled.___eventType_0 = unmarshaledeventType_temp_0; unmarshaled.___s1_1 = il2cpp_codegen_marshal_string_result(marshaled.___s1_1); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___s1_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___s1_1)); unmarshaled.___s2_2 = il2cpp_codegen_marshal_string_result(marshaled.___s2_2); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___s2_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.___s2_2)); unmarshaled.___s3_3 = il2cpp_codegen_marshal_string_result(marshaled.___s3_3); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___s3_3), (void*)il2cpp_codegen_marshal_string_result(marshaled.___s3_3)); if (marshaled.___o_4 != NULL) { unmarshaled.___o_4 = il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___o_4, Il2CppComObject_il2cpp_TypeInfo_var); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___o_4), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___o_4, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___o_4)) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.___o_4), Il2CppIUnknown::IID, marshaled.___o_4); } } else { unmarshaled.___o_4 = NULL; Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___o_4), (void*)NULL); } } // Conversion method for clean up from marshalling of: System.Xml.XmlEventCache/XmlEvent IL2CPP_EXTERN_C void XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshal_pinvoke_cleanup(XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___s1_1); marshaled.___s1_1 = NULL; il2cpp_codegen_marshal_free(marshaled.___s2_2); marshaled.___s2_2 = NULL; il2cpp_codegen_marshal_free(marshaled.___s3_3); marshaled.___s3_3 = NULL; if (marshaled.___o_4 != NULL) { (marshaled.___o_4)->Release(); marshaled.___o_4 = NULL; } } // Conversion methods for marshalling of: System.Xml.XmlEventCache/XmlEvent IL2CPP_EXTERN_C void XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshal_com(const XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2& unmarshaled, XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_com& marshaled) { marshaled.___eventType_0 = unmarshaled.___eventType_0; marshaled.___s1_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___s1_1); marshaled.___s2_2 = il2cpp_codegen_marshal_bstring(unmarshaled.___s2_2); marshaled.___s3_3 = il2cpp_codegen_marshal_bstring(unmarshaled.___s3_3); if (unmarshaled.___o_4 != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___o_4)) { marshaled.___o_4 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.___o_4)); (marshaled.___o_4)->AddRef(); } else { marshaled.___o_4 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.___o_4); } } else { marshaled.___o_4 = NULL; } } IL2CPP_EXTERN_C void XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshal_com_back(const XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_com& marshaled, XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaledeventType_temp_0 = 0; unmarshaledeventType_temp_0 = marshaled.___eventType_0; unmarshaled.___eventType_0 = unmarshaledeventType_temp_0; unmarshaled.___s1_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___s1_1); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___s1_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___s1_1)); unmarshaled.___s2_2 = il2cpp_codegen_marshal_bstring_result(marshaled.___s2_2); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___s2_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___s2_2)); unmarshaled.___s3_3 = il2cpp_codegen_marshal_bstring_result(marshaled.___s3_3); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___s3_3), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___s3_3)); if (marshaled.___o_4 != NULL) { unmarshaled.___o_4 = il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___o_4, Il2CppComObject_il2cpp_TypeInfo_var); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___o_4), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___o_4, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___o_4)) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.___o_4), Il2CppIUnknown::IID, marshaled.___o_4); } } else { unmarshaled.___o_4 = NULL; Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___o_4), (void*)NULL); } } // Conversion method for clean up from marshalling of: System.Xml.XmlEventCache/XmlEvent IL2CPP_EXTERN_C void XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshal_com_cleanup(XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___s1_1); marshaled.___s1_1 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___s2_2); marshaled.___s2_2 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___s3_3); marshaled.___s3_3 = NULL; if (marshaled.___o_4 != NULL) { (marshaled.___o_4)->Release(); marshaled.___o_4 = NULL; } } // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m20FCF4B1533AD8E1D2C319BC1566FC2DE164593D (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; return; } } IL2CPP_EXTERN_C void XmlEvent_InitEvent_m20FCF4B1533AD8E1D2C319BC1566FC2DE164593D_AdjustorThunk (RuntimeObject* __this, int32_t ___eventType0, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlEvent_InitEvent_m20FCF4B1533AD8E1D2C319BC1566FC2DE164593D_inline(_thisAdjusted, ___eventType0, method); } // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m5CE1F84C43F00B2C200634DB1F2699EF9969AC4C (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; String_t* L_1 = ___s11; __this->___s1_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___s1_1), (void*)L_1); return; } } IL2CPP_EXTERN_C void XmlEvent_InitEvent_m5CE1F84C43F00B2C200634DB1F2699EF9969AC4C_AdjustorThunk (RuntimeObject* __this, int32_t ___eventType0, String_t* ___s11, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlEvent_InitEvent_m5CE1F84C43F00B2C200634DB1F2699EF9969AC4C(_thisAdjusted, ___eventType0, ___s11, method); } // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m2C8AA9A043EEBD8F233FB8D941307383D6408D69 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; String_t* L_1 = ___s11; __this->___s1_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___s1_1), (void*)L_1); String_t* L_2 = ___s22; __this->___s2_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___s2_2), (void*)L_2); return; } } IL2CPP_EXTERN_C void XmlEvent_InitEvent_m2C8AA9A043EEBD8F233FB8D941307383D6408D69_AdjustorThunk (RuntimeObject* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlEvent_InitEvent_m2C8AA9A043EEBD8F233FB8D941307383D6408D69(_thisAdjusted, ___eventType0, ___s11, ___s22, method); } // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_mE72CDB2DD41BD005EAC97578F92F1B29C125F4C4 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; String_t* L_1 = ___s11; __this->___s1_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___s1_1), (void*)L_1); String_t* L_2 = ___s22; __this->___s2_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___s2_2), (void*)L_2); String_t* L_3 = ___s33; __this->___s3_3 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___s3_3), (void*)L_3); return; } } IL2CPP_EXTERN_C void XmlEvent_InitEvent_mE72CDB2DD41BD005EAC97578F92F1B29C125F4C4_AdjustorThunk (RuntimeObject* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlEvent_InitEvent_mE72CDB2DD41BD005EAC97578F92F1B29C125F4C4(_thisAdjusted, ___eventType0, ___s11, ___s22, ___s33, method); } // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.String,System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_mA6558E961CD189560195579C1AA91A117D94B276 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, RuntimeObject* ___o4, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; String_t* L_1 = ___s11; __this->___s1_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___s1_1), (void*)L_1); String_t* L_2 = ___s22; __this->___s2_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___s2_2), (void*)L_2); String_t* L_3 = ___s33; __this->___s3_3 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___s3_3), (void*)L_3); RuntimeObject* L_4 = ___o4; __this->___o_4 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___o_4), (void*)L_4); return; } } IL2CPP_EXTERN_C void XmlEvent_InitEvent_mA6558E961CD189560195579C1AA91A117D94B276_AdjustorThunk (RuntimeObject* __this, int32_t ___eventType0, String_t* ___s11, String_t* ___s22, String_t* ___s33, RuntimeObject* ___o4, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlEvent_InitEvent_mA6558E961CD189560195579C1AA91A117D94B276(_thisAdjusted, ___eventType0, ___s11, ___s22, ___s33, ___o4, method); } // System.Void System.Xml.XmlEventCache/XmlEvent::InitEvent(System.Xml.XmlEventCache/XmlEventType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m450055081140BDF68AF5E4C26CDE99127C038238 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, RuntimeObject* ___o1, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; RuntimeObject* L_1 = ___o1; __this->___o_4 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___o_4), (void*)L_1); return; } } IL2CPP_EXTERN_C void XmlEvent_InitEvent_m450055081140BDF68AF5E4C26CDE99127C038238_AdjustorThunk (RuntimeObject* __this, int32_t ___eventType0, RuntimeObject* ___o1, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlEvent_InitEvent_m450055081140BDF68AF5E4C26CDE99127C038238(_thisAdjusted, ___eventType0, ___o1, method); } // System.Xml.XmlEventCache/XmlEventType System.Xml.XmlEventCache/XmlEvent::get_EventType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEvent_get_EventType_m038BF9FCEE1E88C68C6E53DA3EB97B8D1E4639F7 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___eventType_0; return L_0; } } IL2CPP_EXTERN_C int32_t XmlEvent_get_EventType_m038BF9FCEE1E88C68C6E53DA3EB97B8D1E4639F7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XmlEvent_get_EventType_m038BF9FCEE1E88C68C6E53DA3EB97B8D1E4639F7_inline(_thisAdjusted, method); return _returnValue; } // System.String System.Xml.XmlEventCache/XmlEvent::get_String1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___s1_1; return L_0; } } IL2CPP_EXTERN_C String_t* XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline(_thisAdjusted, method); return _returnValue; } // System.String System.Xml.XmlEventCache/XmlEvent::get_String2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___s2_2; return L_0; } } IL2CPP_EXTERN_C String_t* XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline(_thisAdjusted, method); return _returnValue; } // System.String System.Xml.XmlEventCache/XmlEvent::get_String3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___s3_3; return L_0; } } IL2CPP_EXTERN_C String_t* XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Xml.XmlEventCache/XmlEvent::get_Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2 (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___o_4; return L_0; } } IL2CPP_EXTERN_C RuntimeObject* XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.Xml.XmlSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_m6E1FBB1032F598182DF034137A956ADC2141D571 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsMgr1, String_t* ___xmlLang2, int32_t ___xmlSpace3, 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; } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___nt0; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1 = ___nsMgr1; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; String_t* L_3 = ___xmlLang2; int32_t L_4 = ___xmlSpace3; XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532(__this, L_0, L_1, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, L_2, L_3, L_4, NULL); return; } } // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsMgr1, String_t* ___docTypeName2, String_t* ___pubId3, String_t* ___sysId4, String_t* ___internalSubset5, String_t* ___baseURI6, String_t* ___xmlLang7, int32_t ___xmlSpace8, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___nt0; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1 = ___nsMgr1; String_t* L_2 = ___docTypeName2; String_t* L_3 = ___pubId3; String_t* L_4 = ___sysId4; String_t* L_5 = ___internalSubset5; String_t* L_6 = ___baseURI6; String_t* L_7 = ___xmlLang7; int32_t L_8 = ___xmlSpace8; XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL, NULL); return; } } // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsMgr1, String_t* ___docTypeName2, String_t* ___pubId3, String_t* ___sysId4, String_t* ___internalSubset5, String_t* ___baseURI6, String_t* ___xmlLang7, int32_t ___xmlSpace8, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___enc9, 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; } XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B9_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B8_0 = NULL; String_t* G_B10_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B10_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B12_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B11_0 = NULL; String_t* G_B13_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B13_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B15_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B14_0 = NULL; String_t* G_B16_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B16_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B18_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B17_0 = NULL; String_t* G_B19_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B19_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B21_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B20_0 = NULL; String_t* G_B22_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B22_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B24_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B23_0 = NULL; String_t* G_B25_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B25_1 = NULL; { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____docTypeName_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____docTypeName_2), (void*)L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____pubId_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____pubId_3), (void*)L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____sysId_4 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->____sysId_4), (void*)L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____internalSubset_5 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____internalSubset_5), (void*)L_3); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____xmlLang_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->____xmlLang_6), (void*)L_4); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____baseURI_8 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____baseURI_8), (void*)L_5); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_6 = ___nsMgr1; if (!L_6) { goto IL_007e; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = ___nt0; if (L_7) { goto IL_005c; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_8 = ___nsMgr1; NullCheck(L_8); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9; L_9 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(8 /* System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::get_NameTable() */, L_8); __this->____nt_0 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->____nt_0), (void*)L_9); goto IL_0085; } IL_005c: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10 = ___nt0; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_11 = ___nsMgr1; NullCheck(L_11); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12; L_12 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(8 /* System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::get_NameTable() */, L_11); if ((((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_10) == ((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_12))) { goto IL_0075; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_14 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_14); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5591FEB8D450C0589982D61E5715CF6270C18952)), L_13, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561_RuntimeMethod_var))); } IL_0075: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_15 = ___nt0; __this->____nt_0 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->____nt_0), (void*)L_15); goto IL_0085; } IL_007e: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_16 = ___nt0; __this->____nt_0 = L_16; Il2CppCodeGenWriteBarrier((void**)(&__this->____nt_0), (void*)L_16); } IL_0085: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_17 = ___nsMgr1; __this->____nsMgr_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->____nsMgr_1), (void*)L_17); String_t* L_18 = ___docTypeName2; G_B8_0 = __this; if (!L_18) { G_B9_0 = __this; goto IL_0093; } } { String_t* L_19 = ___docTypeName2; G_B10_0 = L_19; G_B10_1 = G_B8_0; goto IL_0098; } IL_0093: { String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B10_0 = L_20; G_B10_1 = G_B9_0; } IL_0098: { NullCheck(G_B10_1); G_B10_1->____docTypeName_2 = G_B10_0; Il2CppCodeGenWriteBarrier((void**)(&G_B10_1->____docTypeName_2), (void*)G_B10_0); String_t* L_21 = ___pubId3; G_B11_0 = __this; if (!L_21) { G_B12_0 = __this; goto IL_00a6; } } { String_t* L_22 = ___pubId3; G_B13_0 = L_22; G_B13_1 = G_B11_0; goto IL_00ab; } IL_00a6: { String_t* L_23 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B13_0 = L_23; G_B13_1 = G_B12_0; } IL_00ab: { NullCheck(G_B13_1); G_B13_1->____pubId_3 = G_B13_0; Il2CppCodeGenWriteBarrier((void**)(&G_B13_1->____pubId_3), (void*)G_B13_0); String_t* L_24 = ___sysId4; G_B14_0 = __this; if (!L_24) { G_B15_0 = __this; goto IL_00b9; } } { String_t* L_25 = ___sysId4; G_B16_0 = L_25; G_B16_1 = G_B14_0; goto IL_00be; } IL_00b9: { String_t* L_26 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B16_0 = L_26; G_B16_1 = G_B15_0; } IL_00be: { NullCheck(G_B16_1); G_B16_1->____sysId_4 = G_B16_0; Il2CppCodeGenWriteBarrier((void**)(&G_B16_1->____sysId_4), (void*)G_B16_0); String_t* L_27 = ___internalSubset5; G_B17_0 = __this; if (!L_27) { G_B18_0 = __this; goto IL_00cc; } } { String_t* L_28 = ___internalSubset5; G_B19_0 = L_28; G_B19_1 = G_B17_0; goto IL_00d1; } IL_00cc: { String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B19_0 = L_29; G_B19_1 = G_B18_0; } IL_00d1: { NullCheck(G_B19_1); G_B19_1->____internalSubset_5 = G_B19_0; Il2CppCodeGenWriteBarrier((void**)(&G_B19_1->____internalSubset_5), (void*)G_B19_0); String_t* L_30 = ___baseURI6; G_B20_0 = __this; if (!L_30) { G_B21_0 = __this; goto IL_00df; } } { String_t* L_31 = ___baseURI6; G_B22_0 = L_31; G_B22_1 = G_B20_0; goto IL_00e4; } IL_00df: { String_t* L_32 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B22_0 = L_32; G_B22_1 = G_B21_0; } IL_00e4: { NullCheck(G_B22_1); G_B22_1->____baseURI_8 = G_B22_0; Il2CppCodeGenWriteBarrier((void**)(&G_B22_1->____baseURI_8), (void*)G_B22_0); String_t* L_33 = ___xmlLang7; G_B23_0 = __this; if (!L_33) { G_B24_0 = __this; goto IL_00f2; } } { String_t* L_34 = ___xmlLang7; G_B25_0 = L_34; G_B25_1 = G_B23_0; goto IL_00f7; } IL_00f2: { String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B25_0 = L_35; G_B25_1 = G_B24_0; } IL_00f7: { NullCheck(G_B25_1); G_B25_1->____xmlLang_6 = G_B25_0; Il2CppCodeGenWriteBarrier((void**)(&G_B25_1->____xmlLang_6), (void*)G_B25_0); int32_t L_36 = ___xmlSpace8; __this->____xmlSpace_7 = L_36; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ___enc9; __this->____encoding_9 = L_37; Il2CppCodeGenWriteBarrier((void**)(&__this->____encoding_9), (void*)L_37); return; } } // System.Xml.XmlNameTable System.Xml.XmlParserContext::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->____nt_0; return L_0; } } // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::get_NamespaceManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->____nsMgr_1; return L_0; } } // System.String System.Xml.XmlParserContext::get_DocTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____docTypeName_2; return L_0; } } // System.String System.Xml.XmlParserContext::get_PublicId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____pubId_3; return L_0; } } // System.String System.Xml.XmlParserContext::get_SystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____sysId_4; return L_0; } } // System.String System.Xml.XmlParserContext::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____baseURI_8; return L_0; } } // System.String System.Xml.XmlParserContext::get_InternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____internalSubset_5; return L_0; } } // System.String System.Xml.XmlParserContext::get_XmlLang() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_XmlLang_m15AAD2E5AA247235638A436E68596B9A89BFE443 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____xmlLang_6; return L_0; } } // System.Xml.XmlSpace System.Xml.XmlParserContext::get_XmlSpace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlParserContext_get_XmlSpace_m52BE2428971EFFCBE9922F1B37FEEE9940AF1891 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____xmlSpace_7; return L_0; } } // System.Text.Encoding System.Xml.XmlParserContext::get_Encoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlParserContext_get_Encoding_m70D0D1E92582C7F95EE6E9024771C44129B1AC52 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = __this->____encoding_9; return L_0; } } // System.Boolean System.Xml.XmlParserContext::get_HasDtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __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->____internalSubset_5; 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_0035; } } { String_t* L_3 = __this->____pubId_3; 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_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_3, L_4, NULL); if (L_5) { goto IL_0035; } } { String_t* L_6 = __this->____sysId_4; 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_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_6, L_7, NULL); return L_8; } IL_0035: { return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlRawWriter::WriteStartDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteStartDocument_m06A9651D246C12C39727CDC1FA3A4E9A701F4BA0 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteStartDocument_m06A9651D246C12C39727CDC1FA3A4E9A701F4BA0_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteStartDocument(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteStartDocument_m6C1C6E7A7399715D344878C22F801FE8A492A0C0 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, bool ___standalone0, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteStartDocument_m6C1C6E7A7399715D344878C22F801FE8A492A0C0_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteEndDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteEndDocument_m00B0FFF19C0A850E4BD504C7BF9105A9AD2ED3ED (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteEndDocument_m00B0FFF19C0A850E4BD504C7BF9105A9AD2ED3ED_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteDocType_m97C0CC9F272DCFB083B4186AE86BE36853017152 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlRawWriter::WriteEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteEndElement_m768234DAF614CA5E82428BA65591838DE758E189 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteEndElement_m768234DAF614CA5E82428BA65591838DE758E189_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteFullEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteFullEndElement_mAC4BEC5490F30322867F31C8A594FAE4DD597DD1 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteFullEndElement_mAC4BEC5490F30322867F31C8A594FAE4DD597DD1_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteBase64_m3B717B23DDCA782AE1ECD2770444F8978EB12D4C (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* L_0 = __this->___base64Encoder_1; if (L_0) { goto IL_0014; } } { XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* L_1 = (XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D*)il2cpp_codegen_object_new(XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D_il2cpp_TypeInfo_var); NullCheck(L_1); XmlRawWriterBase64Encoder__ctor_mEF2A6728BBE676EAA93B4B87A3A8CB40F99B5C94(L_1, __this, NULL); __this->___base64Encoder_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___base64Encoder_1), (void*)L_1); } IL_0014: { XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* L_2 = __this->___base64Encoder_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0; int32_t L_4 = ___index1; int32_t L_5 = ___count2; NullCheck(L_2); Base64Encoder_Encode_m93B7F06935043B4D5A76BDAD576A18EB9703AAFA(L_2, L_3, L_4, L_5, NULL); return; } } // System.String System.Xml.XmlRawWriter::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlRawWriter_LookupPrefix_mB3E13044C336CFD95B53CCED74520A5C8E6CF72F (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___ns0, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_LookupPrefix_mB3E13044C336CFD95B53CCED74520A5C8E6CF72F_RuntimeMethod_var))); } } // System.Xml.WriteState System.Xml.XmlRawWriter::get_WriteState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlRawWriter_get_WriteState_mA2067433E589B1EE6D4BC1754826DA6F3429CAFD (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_get_WriteState_mA2067433E589B1EE6D4BC1754826DA6F3429CAFD_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteCData_mAE1C03F9A44994623C7B1EF3E76B14F4E293B9EC (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___text0, const RuntimeMethod* method) { { String_t* L_0 = ___text0; VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_0); return; } } // System.Void System.Xml.XmlRawWriter::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteCharEntity_m4F49891F68FDA1490088A8F4D29C62559908F625 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; Il2CppChar L_2 = ___ch0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (Il2CppChar)L_2); String_t* L_3; L_3 = String_CreateString_mFBC28D2E3EB87D497F7E702E4FFAD65F635E44DF(NULL, L_1, NULL); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlRawWriter::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteSurrogateCharEntity_mBBC2232DA4D976770C775C4503D4450FB1CD3FDC (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0; Il2CppChar L_2 = ___lowChar0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (Il2CppChar)L_2); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_1; Il2CppChar L_4 = ___highChar1; NullCheck(L_3); (L_3)->SetAt(static_cast(1), (Il2CppChar)L_4); String_t* L_5; L_5 = String_CreateString_mFBC28D2E3EB87D497F7E702E4FFAD65F635E44DF(NULL, L_3, NULL); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_5); return; } } // System.Void System.Xml.XmlRawWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteWhitespace_m69B7654333637A2035F36BA712D451FBD23618D5 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___ws0, const RuntimeMethod* method) { { String_t* L_0 = ___ws0; VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_0); return; } } // System.Void System.Xml.XmlRawWriter::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteChars_mBAACCE48512701AA0F9EEE4D1F2F802C7DACEC88 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; String_t* L_3; L_3 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, L_2, NULL); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlRawWriter::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteRaw_m71B243275F38E1F617025195ED2E7B3876BB8817 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0; int32_t L_1 = ___index1; int32_t L_2 = ___count2; String_t* L_3; L_3 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, L_2, NULL); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3); return; } } // System.Void System.Xml.XmlRawWriter::WriteRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteRaw_m0F80B20804D4575D499BB07D7B38C0049A61FC09 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___data0, const RuntimeMethod* method) { { String_t* L_0 = ___data0; VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_0); return; } } // System.Void System.Xml.XmlRawWriter::WriteValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteValue_mBC7A18DA8A75432089DA1F806C7B48547C30B9C7 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_0); return; } } // System.Void System.Xml.XmlRawWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteAttributes_mA0FBB2A1847FBBFA368194E34EA8F56C751357EA (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, bool ___defattr1, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteAttributes_mA0FBB2A1847FBBFA368194E34EA8F56C751357EA_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteNode(System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteNode_mAEAAFB5FA3834598FAD69B9A7C937E2D7135D824 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, bool ___defattr1, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteNode_mAEAAFB5FA3834598FAD69B9A7C937E2D7135D824_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_set_NamespaceResolver_m3DC419BDD32CFC437141BD30FC993F51F95380EC (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; __this->___resolver_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___resolver_2), (void*)L_0); return; } } // System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteXmlDeclaration_m12DF473924CE82064D5F36A6EA3A69305E8A664A (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, int32_t ___standalone0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteXmlDeclaration_m56BE3315E10737E12378C82A0EB89BDC7E473ECC (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___xmldecl0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlRawWriter::OnRootElement(System.Xml.ConformanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_OnRootElement_m49472334F9B258309313F9ADD328298768CC3791 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, int32_t ___conformanceLevel0, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlRawWriter::WriteFullEndElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteFullEndElement_mBAB2CD37247D50D372D294F6816F3BBC95ACE8B5 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___ns2; VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(40 /* System.Void System.Xml.XmlRawWriter::WriteEndElement(System.String,System.String,System.String) */, __this, L_0, L_1, L_2); return; } } // System.Boolean System.Xml.XmlRawWriter::get_SupportsNamespaceDeclarationInChunks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlRawWriter_get_SupportsNamespaceDeclarationInChunks_m01C08E3138D77E93B69A83B77D9A9F016DEFE519 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteStartNamespaceDeclaration_m73DD1FCBC687FF7D182AE743EC5A3FF2408FD298 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, String_t* ___prefix0, const RuntimeMethod* method) { { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_0); NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteStartNamespaceDeclaration_m73DD1FCBC687FF7D182AE743EC5A3FF2408FD298_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteEndNamespaceDeclaration_mF3C8681D7C4A193AAD6B86AEAE99BF4A8D17E616 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_0); NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlRawWriter_WriteEndNamespaceDeclaration_mF3C8681D7C4A193AAD6B86AEAE99BF4A8D17E616_RuntimeMethod_var))); } } // System.Void System.Xml.XmlRawWriter::WriteEndBase64() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteEndBase64_mD3E805B2B1D8DCF03161076828BB76960C3F488E (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* L_0 = __this->___base64Encoder_1; NullCheck(L_0); Base64Encoder_Flush_mBCE3506CD0C1A9EF71FB84544496707BBC562324(L_0, NULL); return; } } // System.Void System.Xml.XmlRawWriter::Close(System.Xml.WriteState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_Close_m828676BDA3EAF3ABCDB853F02C99C825F4D3E12C (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, int32_t ___currentState0, const RuntimeMethod* method) { { VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, __this); return; } } // System.Void System.Xml.XmlRawWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) { { XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714(__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.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlReader_get_Settings_m0D9572E3C7ECC83E15DB82E1C69449448BC5433E (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)NULL; } } // System.String System.Xml.XmlReader::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_get_Name_m584CCDFC01FC6C2679778096652800364589F784 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, __this); NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if (L_1) { goto IL_0014; } } { String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, __this); return L_2; } IL_0014: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3; L_3 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, __this); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, __this); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, __this); String_t* L_6; L_6 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_4, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_5, NULL); NullCheck(L_3); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_6); return L_7; } } // System.Boolean System.Xml.XmlReader::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_IsDefault_m8E9B24348ADEAC8DB66DB57DBA63DADDF147BA91 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Char System.Xml.XmlReader::get_QuoteChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XmlReader_get_QuoteChar_m94EB89E36D1DC20A58DB236A6E3B4D2675A36E0C (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return ((int32_t)34); } } // System.Xml.XmlSpace System.Xml.XmlReader::get_XmlSpace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReader_get_XmlSpace_m14791B54B3BDE2AA55F5B3C7B3D498C6349E0AFE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (int32_t)(0); } } // System.String System.Xml.XmlReader::get_XmlLang() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_get_XmlLang_m7C58ED85F12749557F12BADA02656A6CA50DC08B (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReader_get_SchemaInfo_mB7CCD23344205CBD3BC3845DF753AEAF1B43E3CE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { return ((RuntimeObject*)IsInst((RuntimeObject*)__this, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var)); } } // System.Type System.Xml.XmlReader::get_ValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlReader_get_ValueType_m3857363E6906F056A8CFEAA69EBA3B181CA1A5A3 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_1; L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL); return L_1; } } // System.Void System.Xml.XmlReader::MoveToAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_MoveToAttribute_m4A3E26486933DA79ED85C63FD86DE1D0A7414E10 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, int32_t ___i0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = ___i0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___i0; int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, __this); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0018; } } IL_000d: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_MoveToAttribute_m4A3E26486933DA79ED85C63FD86DE1D0A7414E10_RuntimeMethod_var))); } IL_0018: { bool L_4; L_4 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, __this); bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, __this); V_0 = 0; goto IL_0035; } IL_002a: { bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, __this); int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1)); } IL_0035: { int32_t L_8 = V_0; int32_t L_9 = ___i0; if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_002a; } } { return; } } // System.Void System.Xml.XmlReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Close_m00916203478E72B2D955F87F902F1CB3B8A8A5F7 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlReader::Skip() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Skip_m8D853F4CEE74D714779BE3562E1F59E6222AEE6B (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, __this); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_000a; } } { return; } IL_000a: { bool L_1; L_1 = XmlReader_SkipSubtree_m1CEB7BA6526113C98F922984B0F1D43308C9E0B2(__this, NULL); return; } } // System.Boolean System.Xml.XmlReader::get_CanResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_CanResolveEntity_m0CC577FB52644A99BA9ABDA3B23D8A84E8A452E9 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Xml.XmlReader::get_CanReadValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_CanReadValueChunk_m62C2ECB574DF65D1F83DF380C59AE44F62874236 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.Xml.XmlReader::ReadValueChunk(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReader_ReadValueChunk_mB73AAFE56A79DABFE5411D6C4B38D96752CD9CEC (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D929AD36283A98F5B0551589A84C83B5EA0ED79)), NULL); NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_1 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_1); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_ReadValueChunk_mB73AAFE56A79DABFE5411D6C4B38D96752CD9CEC_RuntimeMethod_var))); } } // System.String System.Xml.XmlReader::ReadString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __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*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, __this); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_000f; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_1; } IL_000f: { bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, __this); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0055; } } { bool L_4; L_4 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, __this); if (!L_4) { goto IL_002d; } } { String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_5; } IL_002d: { bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); if (L_6) { goto IL_0045; } } { String_t* L_7; L_7 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), 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*)&XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE_RuntimeMethod_var))); } IL_0045: { int32_t L_9; L_9 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)15))))) { goto IL_0055; } } { String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_10; } IL_0055: { String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; V_0 = L_11; goto IL_0072; } IL_005d: { String_t* L_12 = V_0; String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); String_t* L_14; L_14 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_12, L_13, NULL); V_0 = L_14; bool L_15; L_15 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); if (!L_15) { goto IL_007f; } } IL_0072: { int32_t L_16; L_16 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); bool L_17; L_17 = XmlReader_IsTextualNode_mBACCADDE042BC2FB76009BA77C67751E9559172E(L_16, NULL); if (L_17) { goto IL_005d; } } IL_007f: { String_t* L_18 = V_0; return L_18; } } // System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReader_MoveToContent_m9674D304B24B702B01284234728A0892A4350173 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { int32_t V_0 = 0; IL_0000: { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); V_0 = L_0; int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1))) { case 0: { goto IL_0033; } case 1: { goto IL_002c; } case 2: { goto IL_0033; } case 3: { goto IL_0033; } case 4: { goto IL_0033; } } } { int32_t L_2 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, ((int32_t)15)))) > ((uint32_t)1)))) { goto IL_0033; } } { goto IL_003a; } IL_002c: { bool L_3; L_3 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, __this); } IL_0033: { int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); return L_4; } IL_003a: { bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); if (L_5) { goto IL_0000; } } { int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); return L_6; } } // System.Void System.Xml.XmlReader::ReadStartElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_ReadStartElement_m91C35D061592E8327FF677129BC412DBC75502BE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, __this); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_002e; } } { int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); V_0 = L_1; Il2CppFakeBox L_2(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_0)); String_t* L_3; L_3 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_2), NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_4); XmlException__ctor_m9B374E074F3F119E162C8075170EAC3D83B903C3(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50709161A683107F88DF833963D6907320EB2D94)), L_3, ((RuntimeObject*)IsInst((RuntimeObject*)__this, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)))), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_ReadStartElement_m91C35D061592E8327FF677129BC412DBC75502BE_RuntimeMethod_var))); } IL_002e: { bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); return; } } // System.String System.Xml.XmlReader::ReadElementString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_ReadElementString_mADA8000290EE0555D50AE32B405F4871BD4A97DC (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __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* V_0 = NULL; int32_t V_1 = 0; { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; V_0 = L_0; int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, __this); if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0034; } } { int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); V_1 = L_2; Il2CppFakeBox L_3(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_1)); String_t* L_4; L_4 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_3), NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_5); XmlException__ctor_m9B374E074F3F119E162C8075170EAC3D83B903C3(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50709161A683107F88DF833963D6907320EB2D94)), L_4, ((RuntimeObject*)IsInst((RuntimeObject*)__this, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)))), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_ReadElementString_mADA8000290EE0555D50AE32B405F4871BD4A97DC_RuntimeMethod_var))); } IL_0034: { bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, __this); if (L_6) { goto IL_0093; } } { bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, __this); V_0 = L_8; int32_t L_9; L_9 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((((int32_t)L_9) == ((int32_t)((int32_t)15)))) { goto IL_008a; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10; int32_t L_12; L_12 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); V_1 = L_12; Il2CppFakeBox L_13(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_1)); String_t* L_14; L_14 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_13), NULL); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_14); (L_11)->SetAt(static_cast(0), (String_t*)L_14); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_11; NullCheck(L_15); ArrayElementTypeCheck (L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E1D57CE6B85658D066056F8AB14C7463911E2B2))); (L_15)->SetAt(static_cast(1), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E1D57CE6B85658D066056F8AB14C7463911E2B2))); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_16 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_16); XmlException__ctor_mC5DF75B19F103B9950AE9C30EE4161CF712442E3(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCAFD5B1578BE15D85E6DD4147D5AE04B0EF57878)), L_15, ((RuntimeObject*)IsInst((RuntimeObject*)__this, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)))), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_ReadElementString_mADA8000290EE0555D50AE32B405F4871BD4A97DC_RuntimeMethod_var))); } IL_008a: { bool L_17; L_17 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); goto IL_009a; } IL_0093: { bool L_18; L_18 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); } IL_009a: { String_t* L_19 = V_0; return L_19; } } // System.Void System.Xml.XmlReader::ReadEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_ReadEndElement_m7205BEED63D93DC0B32DC00BD811A78475C2E675 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, __this); if ((((int32_t)L_0) == ((int32_t)((int32_t)15)))) { goto IL_002f; } } { int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); V_0 = L_1; Il2CppFakeBox L_2(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_0)); String_t* L_3; L_3 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_2), NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_4); XmlException__ctor_m9B374E074F3F119E162C8075170EAC3D83B903C3(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50709161A683107F88DF833963D6907320EB2D94)), L_3, ((RuntimeObject*)IsInst((RuntimeObject*)__this, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)))), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_ReadEndElement_m7205BEED63D93DC0B32DC00BD811A78475C2E675_RuntimeMethod_var))); } IL_002f: { bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); return; } } // System.Boolean System.Xml.XmlReader::IsStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_IsStartElement_mECA89C8A9C79E487C4178A2232747C87E67261C9 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, String_t* ___localname0, String_t* ___ns1, const RuntimeMethod* method) { { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, __this); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_0026; } } { String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, __this); String_t* L_2 = ___localname0; bool L_3; L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, L_2, NULL); if (!L_3) { goto IL_0024; } } { String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, __this); String_t* L_5 = ___ns1; bool L_6; L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, L_5, NULL); return L_6; } IL_0024: { return (bool)0; } IL_0026: { return (bool)0; } } // System.String System.Xml.XmlReader::ReadInnerXml() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_ReadInnerXml_m72E11587E3CBC3C755B3C363EBA3292BBAE25B44 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* V_0 = NULL; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* V_1 = NULL; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, __this); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_000f; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_1; } IL_000f: { int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_002e; } } { int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_002e; } } { bool L_4; L_4 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_5; } IL_002e: { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6; L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_7 = (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D*)il2cpp_codegen_object_new(StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var); NullCheck(L_7); StringWriter__ctor_mE3EE42D6B6B6CE4F81849022B19FFC1842FB3FCA(L_7, L_6, NULL); V_0 = L_7; StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_8 = V_0; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9; L_9 = XmlReader_CreateWriterForInnerOuterXml_m21C406A18221EA69F47CF9E9D4B92F288EEC5321(__this, L_8, NULL); V_1 = L_9; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0075: {// begin finally (depth: 1) XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = V_1; NullCheck(L_10); VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, L_10); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { int32_t L_11; L_11 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_11) == ((uint32_t)2)))) { goto IL_0062_1; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12 = V_1; Il2CppChar L_13; L_13 = VirtualFuncInvoker0< Il2CppChar >::Invoke(16 /* System.Char System.Xml.XmlReader::get_QuoteChar() */, __this); NullCheck(((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B*)CastclassClass((RuntimeObject*)L_12, XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))); XmlTextWriter_set_QuoteChar_mBF3C553E38CEA9BA68039EA9ABE254F388D078C3(((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B*)CastclassClass((RuntimeObject*)L_12, XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var)), L_13, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_14 = V_1; XmlReader_WriteAttributeValue_mFAF6C308494C08CABA7459D8B7C3D401D64CD3B3(__this, L_14, NULL); } IL_0062_1: { int32_t L_15; L_15 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_15) == ((uint32_t)1)))) { goto IL_0073_1; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16 = V_1; XmlReader_WriteNode_m2BF02F458D263346F4E4C0AD7538584902780D0C(__this, L_16, (bool)0, NULL); } IL_0073_1: { goto IL_007c; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_007c: { StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_17 = V_0; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17); return L_18; } } // System.Void System.Xml.XmlReader::WriteNode(System.Xml.XmlWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_WriteNode_m2BF02F458D263346F4E4C0AD7538584902780D0C (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___xtw0, bool ___defattr1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B3_0 = 0; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if (!L_0) { goto IL_0010; } } { int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, __this); G_B3_0 = L_1; goto IL_0011; } IL_0010: { G_B3_0 = (-1); } IL_0011: { V_0 = G_B3_0; goto IL_0140; } IL_0017: { int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); 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_006f; } case 1: { goto IL_0140; } case 2: { goto IL_00b6; } case 3: { goto IL_00d2; } case 4: { goto IL_00e0; } case 5: { goto IL_0140; } case 6: { goto IL_00ee; } case 7: { goto IL_012c; } case 8: { goto IL_0140; } case 9: { goto IL_0102; } case 10: { goto IL_0140; } case 11: { goto IL_0140; } case 12: { goto IL_00c4; } case 13: { goto IL_00c4; } case 14: { goto IL_013a; } case 15: { goto IL_0140; } case 16: { goto IL_00ee; } } } { goto IL_0140; } IL_006f: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = ___xtw0; String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, __this); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, __this); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, __this); NullCheck(L_4); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_4, L_5, L_6, L_7); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = ___xtw0; Il2CppChar L_9; L_9 = VirtualFuncInvoker0< Il2CppChar >::Invoke(16 /* System.Char System.Xml.XmlReader::get_QuoteChar() */, __this); NullCheck(((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B*)CastclassClass((RuntimeObject*)L_8, XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))); XmlTextWriter_set_QuoteChar_mBF3C553E38CEA9BA68039EA9ABE254F388D078C3(((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B*)CastclassClass((RuntimeObject*)L_8, XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var)), L_9, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = ___xtw0; bool L_11 = ___defattr1; NullCheck(L_10); VirtualActionInvoker2< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD*, bool >::Invoke(32 /* System.Void System.Xml.XmlWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean) */, L_10, __this, L_11); bool L_12; L_12 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, __this); if (!L_12) { goto IL_0140; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13 = ___xtw0; NullCheck(L_13); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_13); goto IL_0140; } IL_00b6: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_14 = ___xtw0; String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_14); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_14, L_15); goto IL_0140; } IL_00c4: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16 = ___xtw0; String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_16); VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_16, L_17); goto IL_0140; } IL_00d2: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_18 = ___xtw0; String_t* L_19; L_19 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_18); VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_18, L_19); goto IL_0140; } IL_00e0: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_20 = ___xtw0; String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, __this); NullCheck(L_20); VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_20, L_21); goto IL_0140; } IL_00ee: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22 = ___xtw0; String_t* L_23; L_23 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, __this); String_t* L_24; L_24 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_22); VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_22, L_23, L_24); goto IL_0140; } IL_0102: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_25 = ___xtw0; String_t* L_26; L_26 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, __this); String_t* L_27; L_27 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, __this, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); String_t* L_28; L_28 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, __this, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); String_t* L_29; L_29 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_25); VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, L_25, L_26, L_27, L_28, L_29); goto IL_0140; } IL_012c: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_30 = ___xtw0; String_t* L_31; L_31 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_30); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_30, L_31); goto IL_0140; } IL_013a: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_32 = ___xtw0; NullCheck(L_32); VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_32); } IL_0140: { bool L_33; L_33 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); if (!L_33) { goto IL_0154; } } { int32_t L_34 = V_0; int32_t L_35; L_35 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, __this); if ((((int32_t)L_34) < ((int32_t)L_35))) { goto IL_0017; } } IL_0154: { int32_t L_36 = V_0; int32_t L_37; L_37 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, __this); if ((!(((uint32_t)L_36) == ((uint32_t)L_37)))) { goto IL_016e; } } { int32_t L_38; L_38 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)15))))) { goto IL_016e; } } { bool L_39; L_39 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); } IL_016e: { return; } } // System.Void System.Xml.XmlReader::WriteAttributeValue(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_WriteAttributeValue_mFAF6C308494C08CABA7459D8B7C3D401D64CD3B3 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___xtw0, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, __this); V_0 = L_0; goto IL_002c; } IL_0009: { int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_1) == ((uint32_t)5)))) { goto IL_0020; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = ___xtw0; String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, __this); NullCheck(L_2); VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_2, L_3); goto IL_002c; } IL_0020: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = ___xtw0; String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, __this); NullCheck(L_4); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_4, L_5); } IL_002c: { bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, __this); if (L_6) { goto IL_0009; } } { String_t* L_7 = V_0; bool L_8; L_8 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, __this, L_7); return; } } // System.Xml.XmlWriter System.Xml.XmlReader::CreateWriterForInnerOuterXml(System.IO.StringWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlReader_CreateWriterForInnerOuterXml_m21C406A18221EA69F47CF9E9D4B92F288EEC5321 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* ___sw0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* V_0 = NULL; { StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_0 = ___sw0; XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_1 = (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B*)il2cpp_codegen_object_new(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var); NullCheck(L_1); XmlTextWriter__ctor_m4AE8363DFA5B2D16F3750514727C63D4A0096489(L_1, L_0, NULL); V_0 = L_1; XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_2 = V_0; XmlReader_SetNamespacesFlag_m91DA940B33442BDBF6D4E7C8323A4CD38804A43C(__this, L_2, NULL); XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_3 = V_0; return L_3; } } // System.Void System.Xml.XmlReader::SetNamespacesFlag(System.Xml.XmlTextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_SetNamespacesFlag_m91DA940B33442BDBF6D4E7C8323A4CD38804A43C (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* ___xtw0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* V_0 = NULL; XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* V_1 = NULL; { V_0 = ((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)IsInstClass((RuntimeObject*)__this, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_0 = V_0; if (!L_0) { goto IL_0017; } } { XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_1 = ___xtw0; XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_2 = V_0; NullCheck(L_2); bool L_3; L_3 = XmlTextReader_get_Namespaces_m220590158131867B9ADD16219151AF9A2F2CA097(L_2, NULL); NullCheck(L_1); XmlTextWriter_set_Namespaces_m83F3F102E98E87105813A68C7318EF2EB26C1384(L_1, L_3, NULL); return; } IL_0017: { V_1 = ((XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9*)IsInstClass((RuntimeObject*)__this, XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9_il2cpp_TypeInfo_var)); XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* L_4 = V_1; if (!L_4) { goto IL_002d; } } { XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_5 = ___xtw0; XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* L_6 = V_1; NullCheck(L_6); bool L_7; L_7 = XmlValidatingReader_get_Namespaces_mE9B13FB33252408970F9376B2FF440E9FB71D50F(L_6, NULL); NullCheck(L_5); XmlTextWriter_set_Namespaces_m83F3F102E98E87105813A68C7318EF2EB26C1384(L_5, L_7, NULL); } IL_002d: { return; } } // System.Boolean System.Xml.XmlReader::get_HasAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_HasAttributes_m3C1671425ACDF97BDD0FA46E1F6C0DBE9A415A40 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, __this); return (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0); } } // System.Void System.Xml.XmlReader::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Dispose_m48A2333E0A2A858E7F6B3B0B7DE63E33B819929D (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { VirtualActionInvoker1< bool >::Invoke(50 /* System.Void System.Xml.XmlReader::Dispose(System.Boolean) */, __this, (bool)1); return; } } // System.Void System.Xml.XmlReader::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Dispose_mDB60699E5094B26D8BF472C67CCF7DB2A8DF57ED (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, bool ___disposing0, const RuntimeMethod* method) { { bool L_0 = ___disposing0; if (!L_0) { goto IL_0012; } } { int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, __this); if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_0012; } } { VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, __this); } IL_0012: { return; } } // System.Xml.XmlNamespaceManager System.Xml.XmlReader::get_NamespaceManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlReader_get_NamespaceManager_mFEDA39F2F6C92F9243B151129C84517787E116E5 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)NULL; } } // System.Boolean System.Xml.XmlReader::IsTextualNode(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_IsTextualNode_mBACCADDE042BC2FB76009BA77C67751E9559172E (int32_t ___nodeType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); uint32_t L_0 = ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___IsTextualNodeBitmap_0; int32_t L_1 = ___nodeType0; return (bool)((!(((uint64_t)((int64_t)(((int64_t)(uint64_t)L_0)&((int64_t)((int32_t)(1<<((int32_t)((int32_t)L_1&((int32_t)31))))))))) <= ((uint64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Xml.XmlReader::HasValueInternal(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_HasValueInternal_mE4B923FA489B97DC6BC46F0746B8DDB3C0ACBF10 (int32_t ___nodeType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); uint32_t L_0 = ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___HasValueBitmap_2; int32_t L_1 = ___nodeType0; return (bool)((!(((uint64_t)((int64_t)(((int64_t)(uint64_t)L_0)&((int64_t)((int32_t)(1<<((int32_t)((int32_t)L_1&((int32_t)31))))))))) <= ((uint64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Xml.XmlReader::SkipSubtree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_SkipSubtree_m1CEB7BA6526113C98F922984B0F1D43308C9E0B2 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0; L_0 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, __this); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0041; } } { bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, __this); if (L_2) { goto IL_0041; } } { int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, __this); V_0 = L_3; } IL_001f: { bool L_4; L_4 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); if (!L_4) { goto IL_0030; } } { int32_t L_5 = V_0; int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, __this); if ((((int32_t)L_5) < ((int32_t)L_6))) { goto IL_001f; } } IL_0030: { int32_t L_7; L_7 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this); if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)15))))) { goto IL_0048; } } { bool L_8; L_8 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); return L_8; } IL_0041: { bool L_9; L_9 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this); return L_9; } IL_0048: { return (bool)0; } } // System.Boolean System.Xml.XmlReader::get_IsDefaultInternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_IsDefaultInternal_mD8F1EBBDBC671A47D7A98D24979DEC7E2BC6336D (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { bool L_0; L_0 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, __this); if (!L_0) { goto IL_000a; } } { return (bool)1; } IL_000a: { RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, __this); V_0 = L_1; RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_001e; } } { RuntimeObject* L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsDefault() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_3); if (!L_4) { goto IL_001e; } } { return (bool)1; } IL_001e: { return (bool)0; } } // System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReader_get_DtdInfo_m42D157D136CDD9C8946A52144DC96D2B568B7040 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (RuntimeObject*)NULL; } } // System.Xml.XmlReader System.Xml.XmlReader::Create(System.IO.Stream,System.Xml.XmlReaderSettings,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReader_Create_mC5D97C323BB8D4C331BA5B0C796847EFD47F343E (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, String_t* ___baseUri2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = ___settings1; if (L_0) { goto IL_000a; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); NullCheck(L_1); XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_1, NULL); ___settings1 = L_1; } IL_000a: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = ___settings1; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___input0; String_t* L_4 = ___baseUri2; NullCheck(L_2); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5; L_5 = XmlReaderSettings_CreateReader_m28F51E3D8AB4BC9B04D23C0AF9DD99940D8E28D6(L_2, L_3, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_4, (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)NULL, NULL); return L_5; } } // System.Xml.XmlReader System.Xml.XmlReader::Create(System.IO.TextReader,System.Xml.XmlReaderSettings,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReader_Create_m037F6E6826BAF997C77DFDE116FC7BFE970540DF (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, String_t* ___baseUri2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = ___settings1; if (L_0) { goto IL_000a; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); NullCheck(L_1); XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_1, NULL); ___settings1 = L_1; } IL_000a: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = ___settings1; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_3 = ___input0; String_t* L_4 = ___baseUri2; NullCheck(L_2); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5; L_5 = XmlReaderSettings_CreateReader_m1B17CDEFA24FB4173AE91DCA3BDA012B1338BD36(L_2, L_3, L_4, (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)NULL, NULL); return L_5; } } // System.Xml.XmlReader System.Xml.XmlReader::CreateSqlReader(System.IO.Stream,System.Xml.XmlReaderSettings,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReader_CreateSqlReader_m68B4218BAA67D8197BA207D8337DCADC0C037721 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___input0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_CreateSqlReader_m68B4218BAA67D8197BA207D8337DCADC0C037721_RuntimeMethod_var))); } IL_000e: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = ___settings1; if (L_2) { goto IL_0018; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_3 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); NullCheck(L_3); XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_3, NULL); ___settings1 = L_3; } IL_0018: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_4 = ___input0; il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); int32_t L_5; L_5 = XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D(L_4, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_5); V_1 = L_6; V_2 = 0; } IL_0026: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_7 = ___input0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_1; int32_t L_9 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_1; NullCheck(L_10); int32_t L_11 = V_2; NullCheck(L_7); int32_t L_12; L_12 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, L_9, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), L_11))); V_3 = L_12; int32_t L_13 = V_2; int32_t L_14 = V_3; V_2 = ((int32_t)il2cpp_codegen_add(L_13, L_14)); int32_t L_15 = V_3; if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0040; } } { int32_t L_16 = V_2; if ((((int32_t)L_16) < ((int32_t)2))) { goto IL_0026; } } IL_0040: { int32_t L_17 = V_2; if ((((int32_t)L_17) < ((int32_t)2))) { goto IL_0087; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = V_1; NullCheck(L_18); int32_t L_19 = 0; uint8_t L_20 = (L_18)->GetAt(static_cast(L_19)); if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)223))))) { goto IL_0087; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = V_1; NullCheck(L_21); int32_t L_22 = 1; uint8_t L_23 = (L_21)->GetAt(static_cast(L_22)); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)255))))) { goto IL_0087; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_24 = ___inputContext2; if (!L_24) { goto IL_0070; } } { String_t* L_25; L_25 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBBF707DBD2474C67BE1EDEC6AEE1A9B0F7A9E60D)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_26 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_26); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_26, L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCCF7B3DD0886B6E6F35A2244E2D4C28889290AFE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReader_CreateSqlReader_m68B4218BAA67D8197BA207D8337DCADC0C037721_RuntimeMethod_var))); } IL_0070: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_27 = ___input0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = V_1; int32_t L_29 = V_2; String_t* L_30 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_31 = ___settings1; NullCheck(L_31); bool L_32; L_32 = XmlReaderSettings_get_CloseInput_m59A87285F3D07FC87B95FDA27AB1462D1318342E_inline(L_31, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_33 = ___settings1; XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8* L_34 = (XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8*)il2cpp_codegen_object_new(XmlSqlBinaryReader_tDB2171373279BA92E7F7298C2EFE11B8C11117E8_il2cpp_TypeInfo_var); NullCheck(L_34); XmlSqlBinaryReader__ctor_m8B549A74D0D60D6068D048978B4BB56ADEA840C6(L_34, L_27, L_28, L_29, L_30, L_32, L_33, NULL); V_0 = L_34; goto IL_009e; } IL_0087: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_35 = ___input0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36 = V_1; int32_t L_37 = V_2; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_38 = ___settings1; String_t* L_39 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_40 = ___inputContext2; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_41 = ___settings1; NullCheck(L_41); bool L_42; L_42 = XmlReaderSettings_get_CloseInput_m59A87285F3D07FC87B95FDA27AB1462D1318342E_inline(L_41, NULL); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_43 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_43); XmlTextReaderImpl__ctor_mF623EF59677A63009DEA8DAADDA313BCF40E2A20(L_43, L_35, L_36, L_37, L_38, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_39, L_40, L_42, NULL); V_0 = L_43; } IL_009e: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_44 = ___settings1; NullCheck(L_44); int32_t L_45; L_45 = XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline(L_44, NULL); if (!L_45) { goto IL_00ae; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_46 = ___settings1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_47 = V_0; NullCheck(L_46); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_48; L_48 = XmlReaderSettings_AddValidation_m7282A35D9968B991F91BBB6C6BE9A230A45EABF9(L_46, L_47, NULL); V_0 = L_48; } IL_00ae: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_49 = ___settings1; NullCheck(L_49); bool L_50; L_50 = XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5_inline(L_49, NULL); if (!L_50) { goto IL_00bd; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_51 = V_0; XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* L_52; L_52 = XmlAsyncCheckReader_CreateAsyncCheckWrapper_m86BBCB3E138D17E6A956E42A87A39346ED011D74(L_51, NULL); V_0 = L_52; } IL_00bd: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_53 = V_0; return L_53; } } // System.Int32 System.Xml.XmlReader::CalcBufferSize(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int64_t V_1 = 0; { V_0 = ((int32_t)4096); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___input0; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_0); if (!L_1) { goto IL_002e; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___input0; NullCheck(L_2); int64_t L_3; L_3 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_2); V_1 = L_3; int64_t L_4 = V_1; int32_t L_5 = V_0; if ((((int64_t)L_4) >= ((int64_t)((int64_t)L_5)))) { goto IL_001f; } } { int64_t L_6 = V_1; if ((int64_t)(L_6) > 2147483647LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D_RuntimeMethod_var); V_0 = ((int32_t)L_6); goto IL_002e; } IL_001f: { int64_t L_7 = V_1; if ((((int64_t)L_7) <= ((int64_t)((int64_t)((int32_t)65536))))) { goto IL_002e; } } { V_0 = ((int32_t)8192); } IL_002e: { int32_t L_8 = V_0; return L_8; } } // System.Object System.Xml.XmlReader::get_debuggerDisplayProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReader_get_debuggerDisplayProxy_mB583F6633EE6F7D376F3DA6298560FF9AC1E9491 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9 L_0; memset((&L_0), 0, sizeof(L_0)); XmlReaderDebuggerDisplayProxy__ctor_m56B82747E748FBB7BC8D0A1728D526EA23B54C1A_inline((&L_0), __this, /*hidden argument*/NULL); XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9 L_1 = L_0; RuntimeObject* L_2 = Box(XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Void System.Xml.XmlReader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.Xml.XmlReader::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__cctor_m128907AB1DC1AD053C3CDF366B6A9C5F9AE84D83 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___IsTextualNodeBitmap_0 = ((int32_t)24600); ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___CanReadContentAsBitmap_1 = ((int32_t)123324); ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___HasValueBitmap_2 = ((int32_t)157084); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshal_pinvoke(const XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9& unmarshaled, XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_pinvoke& marshaled) { Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL); } IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshal_pinvoke_back(const XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_pinvoke& marshaled, XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9& unmarshaled) { Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshal_pinvoke_cleanup(XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshal_com(const XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9& unmarshaled, XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_com& marshaled) { Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL); } IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshal_com_back(const XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_com& marshaled, XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9& unmarshaled) { Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshal_com_cleanup(XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9_marshaled_com& marshaled) { } // System.Void System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderDebuggerDisplayProxy__ctor_m56B82747E748FBB7BC8D0A1728D526EA23B54C1A (XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; __this->___reader_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_0), (void*)L_0); return; } } IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy__ctor_m56B82747E748FBB7BC8D0A1728D526EA23B54C1A_AdjustorThunk (RuntimeObject* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); XmlReaderDebuggerDisplayProxy__ctor_m56B82747E748FBB7BC8D0A1728D526EA23B54C1A_inline(_thisAdjusted, ___reader0, method); } // System.String System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReaderDebuggerDisplayProxy_ToString_mEBDAEFA455D93E9934990687C8ED5421E6537FFB (XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C444E82A2EF8AEC533AC89C8394A988DC706B88); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EF4F70676F5F18B8797A6624726002F607BB8DE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral909AA3EFEECF6508CFB6F17EDD057508FF1D7D17); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99EFCE42C9A728EA7C113BD7034366462E5E09E6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FD9B00B05227B64D8B46A29B6D1B4FEA2C197EF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_0; 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; Il2CppFakeBox L_2(XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var, (&V_0)); String_t* L_3; L_3 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_2), NULL); V_1 = L_3; int32_t L_4 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, 1))) { case 0: { goto IL_006b; } case 1: { goto IL_008c; } case 2: { goto IL_00da; } case 3: { goto IL_00da; } case 4: { goto IL_006b; } case 5: { goto IL_017c; } case 6: { goto IL_008c; } case 7: { goto IL_00da; } case 8: { goto IL_017c; } case 9: { goto IL_00fd; } case 10: { goto IL_017c; } case 11: { goto IL_017c; } case 12: { goto IL_00da; } case 13: { goto IL_00da; } case 14: { goto IL_006b; } case 15: { goto IL_006b; } case 16: { goto IL_00da; } } } { goto IL_017c; } IL_006b: { String_t* L_5 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_0; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_6); String_t* L_8; L_8 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_5, _stringLiteral99EFCE42C9A728EA7C113BD7034366462E5E09E6, L_7, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); V_1 = L_8; goto IL_017c; } IL_008c: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9; String_t* L_11 = V_1; NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast(0), (String_t*)L_11); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_10; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral99EFCE42C9A728EA7C113BD7034366462E5E09E6); (L_12)->SetAt(static_cast(1), (String_t*)_stringLiteral99EFCE42C9A728EA7C113BD7034366462E5E09E6); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___reader_0; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_14); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast(2), (String_t*)L_15); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_13; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral3EF4F70676F5F18B8797A6624726002F607BB8DE); (L_16)->SetAt(static_cast(3), (String_t*)_stringLiteral3EF4F70676F5F18B8797A6624726002F607BB8DE); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = __this->___reader_0; NullCheck(L_18); String_t* L_19; L_19 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_18); il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); String_t* L_20; L_20 = XmlConvert_EscapeValueForDebuggerDisplay_m9C49158A85A26FC96BBC7B0FDDB56111B42A6741(L_19, NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_20); (L_17)->SetAt(static_cast(4), (String_t*)L_20); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = L_17; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); (L_21)->SetAt(static_cast(5), (String_t*)_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); String_t* L_22; L_22 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_21, NULL); V_1 = L_22; goto IL_017c; } IL_00da: { String_t* L_23 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = __this->___reader_0; NullCheck(L_24); String_t* L_25; L_25 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_24); il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); String_t* L_26; L_26 = XmlConvert_EscapeValueForDebuggerDisplay_m9C49158A85A26FC96BBC7B0FDDB56111B42A6741(L_25, NULL); String_t* L_27; L_27 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_23, _stringLiteral2C444E82A2EF8AEC533AC89C8394A988DC706B88, L_26, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); V_1 = L_27; goto IL_017c; } IL_00fd: { String_t* L_28 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_29 = __this->___reader_0; NullCheck(L_29); String_t* L_30; L_30 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_29); String_t* L_31; L_31 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_28, _stringLiteral99EFCE42C9A728EA7C113BD7034366462E5E09E6, L_30, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); V_1 = L_31; String_t* L_32 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_33 = __this->___reader_0; NullCheck(L_33); String_t* L_34; L_34 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_33, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); String_t* L_35; L_35 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_32, _stringLiteral9FD9B00B05227B64D8B46A29B6D1B4FEA2C197EF, L_34, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); V_1 = L_35; String_t* L_36 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_37 = __this->___reader_0; NullCheck(L_37); String_t* L_38; L_38 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_37, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); String_t* L_39; L_39 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_36, _stringLiteral909AA3EFEECF6508CFB6F17EDD057508FF1D7D17, L_38, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); V_1 = L_39; String_t* L_40 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_41 = __this->___reader_0; NullCheck(L_41); String_t* L_42; L_42 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_41); il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); String_t* L_43; L_43 = XmlConvert_EscapeValueForDebuggerDisplay_m9C49158A85A26FC96BBC7B0FDDB56111B42A6741(L_42, NULL); String_t* L_44; L_44 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(L_40, _stringLiteral2C444E82A2EF8AEC533AC89C8394A988DC706B88, L_43, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); V_1 = L_44; } IL_017c: { String_t* L_45 = V_1; return L_45; } } IL2CPP_EXTERN_C String_t* XmlReaderDebuggerDisplayProxy_ToString_mEBDAEFA455D93E9934990687C8ED5421E6537FFB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XmlReaderDebuggerDisplayProxy_ToString_mEBDAEFA455D93E9934990687C8ED5421E6537FFB(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlReaderSettings::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlReaderSettings_Initialize_mC0DBEC15D6168D01836D2F7874E775DB14F63B76(__this, NULL); return; } } // System.Boolean System.Xml.XmlReaderSettings::get_Async() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___useAsync_0; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_Async(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_Async_mD6BEC19B95948116F459E8B53B7FDFBFD52135D3 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5A01712EB283A85C1F3D5A52F99E9B7360723B9); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralC5A01712EB283A85C1F3D5A52F99E9B7360723B9, NULL); bool L_0 = ___value0; __this->___useAsync_0 = L_0; return; } } // System.Xml.XmlNameTable System.Xml.XmlReaderSettings::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlReaderSettings_get_NameTable_mAF10C63E556531DDED4ABA060B60FA89D0D263BE (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_1; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_NameTable(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_NameTable_m5FE079006C8F4D4FF3924D1B976C335C17058900 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral81C6A150C740E85EF7BDB2DE76CBED7BCCC3797F); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral81C6A150C740E85EF7BDB2DE76CBED7BCCC3797F, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___value0; __this->___nameTable_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_1), (void*)L_0); return; } } // System.Boolean System.Xml.XmlReaderSettings::get_IsXmlResolverSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IsXmlResolverSet_mBE7710812B7872C2622B19D7582E8BB43D82EE50 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___U3CIsXmlResolverSetU3Ek__BackingField_19; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_IsXmlResolverSet(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___U3CIsXmlResolverSetU3Ek__BackingField_19 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_XmlResolver_m44B84031BAC224C07AFD233C3DF9A6383216D883 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93B59C6870171FCFAA8A0D2F3A21C5B0CEFC7FDD); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral93B59C6870171FCFAA8A0D2F3A21C5B0CEFC7FDD, NULL); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___value0; __this->___xmlResolver_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_2), (void*)L_0); XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline(__this, (bool)1, NULL); return; } } // System.Xml.XmlResolver System.Xml.XmlReaderSettings::GetXmlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___xmlResolver_2; return L_0; } } // System.Xml.XmlResolver System.Xml.XmlReaderSettings::GetXmlResolver_CheckConfig() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_GetXmlResolver_CheckConfig_mADD7B22F1880EB692D45CED946E9BF39D42034DB (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0; L_0 = XmlReaderSection_get_ProhibitDefaultUrlResolver_m22E5E50B536E3F9F7AE02CEA4581B1872DE5E606(NULL); if (!L_0) { goto IL_0011; } } { bool L_1; L_1 = XmlReaderSettings_get_IsXmlResolverSet_mBE7710812B7872C2622B19D7582E8BB43D82EE50_inline(__this, NULL); if (L_1) { goto IL_0011; } } { return (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL; } IL_0011: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2 = __this->___xmlResolver_2; return L_2; } } // System.Int32 System.Xml.XmlReaderSettings::get_LineNumberOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_LineNumberOffset_m1A1AC89A54212AD35ABA966620FD66EE6DF6963A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNumberOffset_3; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_LineNumberOffset(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_LineNumberOffset_m2D65499EE921190F3E4AFEF8910A4320F446132A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral423005E70CFADA0548835DDF582542DD5BDCFBD3); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral423005E70CFADA0548835DDF582542DD5BDCFBD3, NULL); int32_t L_0 = ___value0; __this->___lineNumberOffset_3 = L_0; return; } } // System.Int32 System.Xml.XmlReaderSettings::get_LinePositionOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_LinePositionOffset_m77D589900D124C6DAD97C42186A63260F877BF52 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePositionOffset_4; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_LinePositionOffset(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_LinePositionOffset_m9421A24A7DF15D954B1301E8E2B6FD1FB27C084A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral035877D5564A6EA6B11C79A48808B85A323C2F5C); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral035877D5564A6EA6B11C79A48808B85A323C2F5C, NULL); int32_t L_0 = ___value0; __this->___linePositionOffset_4 = L_0; return; } } // System.Xml.ConformanceLevel System.Xml.XmlReaderSettings::get_ConformanceLevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ConformanceLevel_m56DEADA9ADB805F1C190609DEA42E5322AD109EB (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___conformanceLevel_5; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_ConformanceLevel(System.Xml.ConformanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E, NULL); int32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)2)))) { goto IL_001a; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76_RuntimeMethod_var))); } IL_001a: { int32_t L_2 = ___value0; __this->___conformanceLevel_5 = L_2; return; } } // System.Boolean System.Xml.XmlReaderSettings::get_CheckCharacters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_CheckCharacters_m92427DD940718F4E7703229BC80C698DA77A6F35 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___checkCharacters_6; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_CheckCharacters(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_CheckCharacters_m16E3594CB4D8977197AEC7CAE390D688C8E23481 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral025C1ECF21AD54C7CC6639C629602C3F7FE62FAA); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral025C1ECF21AD54C7CC6639C629602C3F7FE62FAA, NULL); bool L_0 = ___value0; __this->___checkCharacters_6 = L_0; return; } } // System.Int64 System.Xml.XmlReaderSettings::get_MaxCharactersInDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlReaderSettings_get_MaxCharactersInDocument_mBF86AACB085807A6D3E9936CF287051D34F5261C (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->___maxCharactersInDocument_7; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_MaxCharactersInDocument(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBA35549D8219B5F5409D55485656844283EB1A95); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralBA35549D8219B5F5409D55485656844283EB1A95, NULL); int64_t L_0 = ___value0; if ((((int64_t)L_0) >= ((int64_t)((int64_t)0)))) { goto IL_001b; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054_RuntimeMethod_var))); } IL_001b: { int64_t L_2 = ___value0; __this->___maxCharactersInDocument_7 = L_2; return; } } // System.Int64 System.Xml.XmlReaderSettings::get_MaxCharactersFromEntities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlReaderSettings_get_MaxCharactersFromEntities_mFFA78372DCCFF598DEC760725FA69CAB89A651C3 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->___maxCharactersFromEntities_8; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_MaxCharactersFromEntities(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13, NULL); int64_t L_0 = ___value0; if ((((int64_t)L_0) >= ((int64_t)((int64_t)0)))) { goto IL_001b; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E_RuntimeMethod_var))); } IL_001b: { int64_t L_2 = ___value0; __this->___maxCharactersFromEntities_8 = L_2; return; } } // System.Boolean System.Xml.XmlReaderSettings::get_IgnoreWhitespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreWhitespace_mB0490662AA55A785F86A219B1A9317246868AF33 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___ignoreWhitespace_9; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_IgnoreWhitespace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreWhitespace_m4BD0B66D712AF9636F562222077CB830E887FF60 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral010415DFD810DA785E5CD8173EA9688EDA5E73FE); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral010415DFD810DA785E5CD8173EA9688EDA5E73FE, NULL); bool L_0 = ___value0; __this->___ignoreWhitespace_9 = L_0; return; } } // System.Boolean System.Xml.XmlReaderSettings::get_IgnoreProcessingInstructions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreProcessingInstructions_mF0F6DF6AA4090054BE46DB02400F18CEC5FC850A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___ignorePIs_10; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_IgnoreProcessingInstructions(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreProcessingInstructions_m965368E00B6CD619916BE73B03ACD3AAA5BE708C (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD8C61EC8DBC1376295F70EFEF4B5FDF50F09FBE); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralFD8C61EC8DBC1376295F70EFEF4B5FDF50F09FBE, NULL); bool L_0 = ___value0; __this->___ignorePIs_10 = L_0; return; } } // System.Boolean System.Xml.XmlReaderSettings::get_IgnoreComments() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreComments_m84AF33F6BBE1C9AF5CD0FB0665B923816CED496F (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___ignoreComments_11; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_IgnoreComments(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreComments_mA62566F443A53E7FECC98C0D317F47988559DCB4 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral831ED6EC0D1759EC26A1E876BA9836719586C6D1); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral831ED6EC0D1759EC26A1E876BA9836719586C6D1, NULL); bool L_0 = ___value0; __this->___ignoreComments_11 = L_0; return; } } // System.Xml.DtdProcessing System.Xml.XmlReaderSettings::get_DtdProcessing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___dtdProcessing_12; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_DtdProcessing(System.Xml.DtdProcessing) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD515C8E4D2BD0B64EE134AD25058BE95BF0175BC); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralD515C8E4D2BD0B64EE134AD25058BE95BF0175BC, NULL); int32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)2)))) { goto IL_001a; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043_RuntimeMethod_var))); } IL_001a: { int32_t L_2 = ___value0; __this->___dtdProcessing_12 = L_2; return; } } // System.Boolean System.Xml.XmlReaderSettings::get_CloseInput() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_CloseInput_m59A87285F3D07FC87B95FDA27AB1462D1318342E (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___closeInput_17; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_CloseInput(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_CloseInput_m55C65CFB4AEC572D21825B2EFC92E05B0CE13EE0 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CEED7FBCC48F5EFBFF9645E724BBF3DBFF0A118); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral9CEED7FBCC48F5EFBFF9645E724BBF3DBFF0A118, NULL); bool L_0 = ___value0; __this->___closeInput_17 = L_0; return; } } // System.Xml.ValidationType System.Xml.XmlReaderSettings::get_ValidationType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___validationType_13; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_ValidationType(System.Xml.ValidationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ValidationType_m651D049117DA5C80F75BEB925AB0E1FE40E25620 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5979AB58C12081193D7D5D578C3378FAF6395E9); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralF5979AB58C12081193D7D5D578C3378FAF6395E9, NULL); int32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)4)))) { goto IL_001a; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_ValidationType_m651D049117DA5C80F75BEB925AB0E1FE40E25620_RuntimeMethod_var))); } IL_001a: { int32_t L_2 = ___value0; __this->___validationType_13 = L_2; return; } } // System.Xml.Schema.XmlSchemaValidationFlags System.Xml.XmlReaderSettings::get_ValidationFlags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___validationFlags_14; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_ValidationFlags(System.Xml.Schema.XmlSchemaValidationFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ValidationFlags_m846A17F2EB68AF5C850CDE3CA8218B2D6A400A02 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C301B74DC1621E41EEBD8B5B23916680BB45ACF); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral8C301B74DC1621E41EEBD8B5B23916680BB45ACF, NULL); int32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)31))))) { goto IL_001b; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_ValidationFlags_m846A17F2EB68AF5C850CDE3CA8218B2D6A400A02_RuntimeMethod_var))); } IL_001b: { int32_t L_2 = ___value0; __this->___validationFlags_14 = L_2; return; } } // System.Xml.Schema.XmlSchemaSet System.Xml.XmlReaderSettings::get_Schemas() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = __this->___schemas_15; if (L_0) { goto IL_0013; } } { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_1 = (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)il2cpp_codegen_object_new(XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var); NullCheck(L_1); XmlSchemaSet__ctor_m3D365A1BB668EC9DBFBE314F44F00B1AFB3257BD(L_1, NULL); __this->___schemas_15 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_15), (void*)L_1); } IL_0013: { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_2 = __this->___schemas_15; return L_2; } } // System.Void System.Xml.XmlReaderSettings::set_Schemas(System.Xml.Schema.XmlSchemaSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_Schemas_m4210C0E93B55A57E27BE2D71AC039E8D51DE2EA2 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE60ED23C56E9CE0BE0D8C64F903A987CC2AD1F0); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralCE60ED23C56E9CE0BE0D8C64F903A987CC2AD1F0, NULL); XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = ___value0; __this->___schemas_15 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_15), (void*)L_0); return; } } // System.Xml.XmlReaderSettings System.Xml.XmlReaderSettings::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlReaderSettings_Clone_m6581889814EA9982ABCE97535D76722F81972101 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0; L_0 = Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(__this, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1 = ((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)IsInstSealed((RuntimeObject*)L_0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var)); NullCheck(L_1); XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline(L_1, (bool)0, NULL); return L_1; } } // System.Xml.Schema.ValidationEventHandler System.Xml.XmlReaderSettings::GetEventHandler() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_0 = __this->___valEventHandler_16; return L_0; } } // System.Xml.XmlReader System.Xml.XmlReaderSettings::CreateReader(System.IO.Stream,System.Uri,System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReaderSettings_CreateReader_m28F51E3D8AB4BC9B04D23C0AF9DD99940D8E28D6 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri1, String_t* ___baseUriString2, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___input0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_CreateReader_m28F51E3D8AB4BC9B04D23C0AF9DD99940D8E28D6_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___baseUriString2; if (L_2) { goto IL_002b; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___baseUri1; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_4; L_4 = Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682(L_3, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_4) { goto IL_0023; } } { String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___baseUriString2 = L_5; goto IL_002b; } IL_0023: { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = ___baseUri1; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6); ___baseUriString2 = L_7; } IL_002b: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_8 = ___input0; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = ___baseUri1; String_t* L_10 = ___baseUriString2; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_11 = ___inputContext3; bool L_12 = __this->___closeInput_17; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_13 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_13); XmlTextReaderImpl__ctor_mF623EF59677A63009DEA8DAADDA313BCF40E2A20(L_13, L_8, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, 0, __this, L_9, L_10, L_11, L_12, NULL); V_0 = L_13; int32_t L_14; L_14 = XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline(__this, NULL); if (!L_14) { goto IL_004f; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = V_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16; L_16 = XmlReaderSettings_AddValidation_m7282A35D9968B991F91BBB6C6BE9A230A45EABF9(__this, L_15, NULL); V_0 = L_16; } IL_004f: { bool L_17 = __this->___useAsync_0; if (!L_17) { goto IL_005e; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = V_0; XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* L_19; L_19 = XmlAsyncCheckReader_CreateAsyncCheckWrapper_m86BBCB3E138D17E6A956E42A87A39346ED011D74(L_18, NULL); V_0 = L_19; } IL_005e: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = V_0; return L_20; } } // System.Xml.XmlReader System.Xml.XmlReaderSettings::CreateReader(System.IO.TextReader,System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReaderSettings_CreateReader_m1B17CDEFA24FB4173AE91DCA3BDA012B1338BD36 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, String_t* ___baseUriString1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext2, 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*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; { TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___input0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_CreateReader_m1B17CDEFA24FB4173AE91DCA3BDA012B1338BD36_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___baseUriString1; if (L_2) { goto IL_0018; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___baseUriString1 = L_3; } IL_0018: { TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_4 = ___input0; String_t* L_5 = ___baseUriString1; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_6 = ___inputContext2; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_7 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_7); XmlTextReaderImpl__ctor_m285CC96B7C323DF9216D243E3353C9091CC5B288(L_7, L_4, __this, L_5, L_6, NULL); V_0 = L_7; int32_t L_8; L_8 = XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline(__this, NULL); if (!L_8) { goto IL_0032; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10; L_10 = XmlReaderSettings_AddValidation_m7282A35D9968B991F91BBB6C6BE9A230A45EABF9(__this, L_9, NULL); V_0 = L_10; } IL_0032: { bool L_11 = __this->___useAsync_0; if (!L_11) { goto IL_0041; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = V_0; XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* L_13; L_13 = XmlAsyncCheckReader_CreateAsyncCheckWrapper_m86BBCB3E138D17E6A956E42A87A39346ED011D74(L_12, NULL); V_0 = L_13; } IL_0041: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = V_0; return L_14; } } // System.Void System.Xml.XmlReaderSettings::set_ReadOnly(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___isReadOnly_18 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::CheckReadOnly(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, String_t* ___propertyName0, const RuntimeMethod* method) { { bool L_0 = __this->___isReadOnly_18; if (!L_0) { goto IL_0029; } } { Type_t* L_1; L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL); NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1); String_t* L_3 = ___propertyName0; String_t* L_4; L_4 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D)), L_3, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_5); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral044BADD70F84141B60AE555B5513ABA7D660F738)), L_4, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B_RuntimeMethod_var))); } IL_0029: { return; } } // System.Void System.Xml.XmlReaderSettings::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_mC0DBEC15D6168D01836D2F7874E775DB14F63B76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlReaderSettings_Initialize_m06C6F113289807FBE5B5E248DC1E1C9B199CD477(__this, (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL, NULL); return; } } // System.Void System.Xml.XmlReaderSettings::Initialize(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_m06C6F113289807FBE5B5E248DC1E1C9B199CD477 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver0, const RuntimeMethod* method) { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* G_B2_0 = NULL; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* G_B1_0 = NULL; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* G_B3_0 = NULL; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* G_B3_1 = NULL; { __this->___nameTable_1 = (XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_1), (void*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)NULL); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___resolver0; G_B1_0 = __this; if (!L_0) { G_B2_0 = __this; goto IL_000e; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = ___resolver0; G_B3_0 = L_1; G_B3_1 = G_B1_0; goto IL_0013; } IL_000e: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2; L_2 = XmlReaderSettings_CreateDefaultResolver_m4DABF525FE995E1C01596871EE0E5F69F338E2A8(NULL); G_B3_0 = L_2; G_B3_1 = G_B2_0; } IL_0013: { NullCheck(G_B3_1); G_B3_1->___xmlResolver_2 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___xmlResolver_2), (void*)G_B3_0); __this->___maxCharactersFromEntities_8 = ((int64_t)0); __this->___lineNumberOffset_3 = 0; __this->___linePositionOffset_4 = 0; __this->___checkCharacters_6 = (bool)1; __this->___conformanceLevel_5 = 2; __this->___ignoreWhitespace_9 = (bool)0; __this->___ignorePIs_10 = (bool)0; __this->___ignoreComments_11 = (bool)0; __this->___dtdProcessing_12 = 0; __this->___closeInput_17 = (bool)0; __this->___maxCharactersInDocument_7 = ((int64_t)0); __this->___schemas_15 = (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_15), (void*)(XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)NULL); __this->___validationType_13 = 0; __this->___validationFlags_14 = 8; int32_t L_3 = __this->___validationFlags_14; __this->___validationFlags_14 = ((int32_t)((int32_t)L_3|((int32_t)16))); __this->___useAsync_0 = (bool)0; __this->___isReadOnly_18 = (bool)0; XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline(__this, (bool)0, NULL); return; } } // System.Xml.XmlResolver System.Xml.XmlReaderSettings::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_CreateDefaultResolver_m4DABF525FE995E1C01596871EE0E5F69F338E2A8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_0 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_0); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_0, NULL); return L_0; } } // System.Xml.XmlReader System.Xml.XmlReaderSettings::AddValidation(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlReaderSettings_AddValidation_m7282A35D9968B991F91BBB6C6BE9A230A45EABF9 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* V_0 = NULL; { int32_t L_0 = __this->___validationType_13; if ((!(((uint32_t)L_0) == ((uint32_t)4)))) { goto IL_0034; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1; L_1 = XmlReaderSettings_GetXmlResolver_CheckConfig_mADD7B22F1880EB692D45CED946E9BF39D42034DB(__this, NULL); V_0 = L_1; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2 = V_0; if (L_2) { goto IL_0028; } } { bool L_3; L_3 = XmlReaderSettings_get_IsXmlResolverSet_mBE7710812B7872C2622B19D7582E8BB43D82EE50_inline(__this, NULL); if (L_3) { goto IL_0028; } } { bool L_4; L_4 = XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB(NULL); if (L_4) { goto IL_0028; } } { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_5 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_5); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_5, NULL); V_0 = L_5; } IL_0028: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = ___reader0; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_7 = V_0; XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* L_8 = (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E*)il2cpp_codegen_object_new(XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var); NullCheck(L_8); XsdValidatingReader__ctor_mEFDFB844E2E2199663E2DD8906B0B4A74B3EF5F0(L_8, L_6, L_7, __this, NULL); ___reader0 = L_8; goto IL_0046; } IL_0034: { int32_t L_9 = __this->___validationType_13; if ((!(((uint32_t)L_9) == ((uint32_t)2)))) { goto IL_0046; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = ___reader0; XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_11; L_11 = XmlReaderSettings_CreateDtdValidatingReader_mDFB0D648AD00CA7B1B027BFA1FBA9E0464B70971(__this, L_10, NULL); ___reader0 = L_11; } IL_0046: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = ___reader0; return L_12; } } // System.Xml.XmlValidatingReaderImpl System.Xml.XmlReaderSettings::CreateDtdValidatingReader(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* XmlReaderSettings_CreateDtdValidatingReader_mDFB0D648AD00CA7B1B027BFA1FBA9E0464B70971 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___baseReader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___baseReader0; ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_1; L_1 = XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline(__this, NULL); int32_t L_2; L_2 = XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline(__this, NULL); XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_3 = (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8*)il2cpp_codegen_object_new(XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var); NullCheck(L_3); XmlValidatingReaderImpl__ctor_mB46D37CD4504EACF6A6E6AB65A3D0EB8A96CF950(L_3, L_0, L_1, (bool)((!(((uint32_t)((int32_t)((int32_t)L_2&8))) <= ((uint32_t)0)))? 1 : 0), NULL); return L_3; } } // System.Boolean System.Xml.XmlReaderSettings::EnableLegacyXmlSettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_20), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var); if (!L_0) { goto IL_0017; } } { bool L_1; L_1 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_20), Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); return L_1; } IL_0017: { bool L_2; L_2 = BinaryCompatibility_get_TargetsAtLeast_Desktop_V4_5_2_mE2DBBB0681C730A3535F391056F24F9F2EBA807C(NULL); if (L_2) { goto IL_0034; } } { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_3), (bool)1, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); ((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_20 = L_3; bool L_4; L_4 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_20), Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); return L_4; } IL_0034: { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_5; memset((&L_5), 0, sizeof(L_5)); Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_5), (bool)0, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); ((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_20 = L_5; bool L_6; L_6 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_20), Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); return L_6; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextEncoder::.ctor(System.IO.TextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder__ctor_m29D14256606ECE213B16EC9E934E11DE23BC2F6F (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter0, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___textWriter0; __this->___textWriter_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___textWriter_0), (void*)L_0); __this->___quoteChar_2 = ((int32_t)34); XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_1; L_1 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL); __this->___xmlCharType_5 = L_1; Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_5))->___charProperties_2), (void*)NULL); return; } } // System.Void System.Xml.XmlTextEncoder::set_QuoteChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; __this->___quoteChar_2 = L_0; return; } } // System.Void System.Xml.XmlTextEncoder::StartAttribute(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_StartAttribute_mF465D7D8BA5D27C78DD05400E137E682BD9FDE7B (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, bool ___cacheAttrValue0, 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; } { __this->___inAttribute_1 = (bool)1; bool L_0 = ___cacheAttrValue0; __this->___cacheAttrValue_4 = L_0; bool L_1 = ___cacheAttrValue0; if (!L_1) { goto IL_0031; } } { StringBuilder_t* L_2 = __this->___attrValue_3; if (L_2) { goto IL_0025; } } { StringBuilder_t* L_3 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_3); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_3, NULL); __this->___attrValue_3 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___attrValue_3), (void*)L_3); return; } IL_0025: { StringBuilder_t* L_4 = __this->___attrValue_3; NullCheck(L_4); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_4, 0, NULL); } IL_0031: { return; } } // System.Void System.Xml.XmlTextEncoder::EndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_EndAttribute_mAED2FFE742552CD2454B204481F9C43B113396FB (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, const RuntimeMethod* method) { { bool L_0 = __this->___cacheAttrValue_4; if (!L_0) { goto IL_0014; } } { StringBuilder_t* L_1 = __this->___attrValue_3; NullCheck(L_1); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_1, 0, NULL); } IL_0014: { __this->___inAttribute_1 = (bool)0; __this->___cacheAttrValue_4 = (bool)0; return; } } // System.String System.Xml.XmlTextEncoder::get_AttributeValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextEncoder_get_AttributeValue_m3DC77E08BDA49EFA196673E7625B43CBCE70DA96 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __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; } { bool L_0 = __this->___cacheAttrValue_4; if (!L_0) { goto IL_0014; } } { StringBuilder_t* L_1 = __this->___attrValue_3; NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); return L_2; } IL_0014: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_3; } } // System.Void System.Xml.XmlTextEncoder::WriteSurrogateChar(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteSurrogateChar_m81A912C37647DE260C756097A6188DFA25BB1EDB (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { { Il2CppChar L_0 = ___lowChar0; bool L_1; L_1 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_0, NULL); if (!L_1) { goto IL_0010; } } { Il2CppChar L_2 = ___highChar1; bool L_3; L_3 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_2, NULL); if (L_3) { goto IL_0018; } } IL_0010: { Il2CppChar L_4 = ___lowChar0; Il2CppChar L_5 = ___highChar1; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_6; L_6 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(L_4, L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteSurrogateChar_m81A912C37647DE260C756097A6188DFA25BB1EDB_RuntimeMethod_var))); } IL_0018: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = __this->___textWriter_0; Il2CppChar L_8 = ___highChar1; NullCheck(L_7); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_7, L_8); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___textWriter_0; Il2CppChar L_10 = ___lowChar0; NullCheck(L_9); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_9, L_10); return; } } // System.Void System.Xml.XmlTextEncoder::Write(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; int32_t V_3 = 0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___offset1; if ((((int32_t)0) <= ((int32_t)L_2))) { goto IL_001d; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___count2; if ((((int32_t)0) <= ((int32_t)L_4))) { goto IL_002c; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var))); } IL_002c: { int32_t L_6 = ___count2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___array0; NullCheck(L_7); int32_t L_8 = ___offset1; if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8))))) { goto IL_003f; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var))); } IL_003f: { bool L_10 = __this->___cacheAttrValue_4; if (!L_10) { goto IL_0056; } } { StringBuilder_t* L_11 = __this->___attrValue_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = ___array0; int32_t L_13 = ___offset1; int32_t L_14 = ___count2; NullCheck(L_11); StringBuilder_t* L_15; L_15 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_11, L_12, L_13, L_14, NULL); } IL_0056: { int32_t L_16 = ___offset1; int32_t L_17 = ___count2; V_0 = ((int32_t)il2cpp_codegen_add(L_16, L_17)); int32_t L_18 = ___offset1; V_1 = L_18; V_2 = 0; } IL_005e: { int32_t L_19 = V_1; V_3 = L_19; goto IL_0066; } IL_0062: { int32_t L_20 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1)); } IL_0066: { int32_t L_21 = V_1; int32_t L_22 = V_0; if ((((int32_t)L_21) >= ((int32_t)L_22))) { goto IL_0083; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_23 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = L_23->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = ___array0; int32_t L_26 = V_1; NullCheck(L_25); int32_t L_27 = L_26; uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast(L_27)); uint16_t L_29 = L_28; V_2 = L_29; NullCheck(L_24); uint16_t L_30 = L_29; uint8_t L_31 = (L_24)->GetAt(static_cast(L_30)); if (((int32_t)((int32_t)L_31&((int32_t)128)))) { goto IL_0062; } } IL_0083: { int32_t L_32 = V_3; int32_t L_33 = V_1; if ((((int32_t)L_32) >= ((int32_t)L_33))) { goto IL_0097; } } { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_34 = __this->___textWriter_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = ___array0; int32_t L_36 = V_3; int32_t L_37 = V_1; int32_t L_38 = V_3; NullCheck(L_34); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_34, L_35, L_36, ((int32_t)il2cpp_codegen_subtract(L_37, L_38))); } IL_0097: { int32_t L_39 = V_1; int32_t L_40 = V_0; if ((((int32_t)L_39) == ((int32_t)L_40))) { goto IL_01f6; } } { Il2CppChar L_41 = V_2; if ((!(((uint32_t)L_41) <= ((uint32_t)((int32_t)38))))) { goto IL_00d2; } } { Il2CppChar L_42 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_42, ((int32_t)9)))) { case 0: { goto IL_00e6; } case 1: { goto IL_00f7; } case 2: { goto IL_01a9; } case 3: { goto IL_01a9; } case 4: { goto IL_00f7; } } } { Il2CppChar L_43 = V_2; if ((((int32_t)L_43) == ((int32_t)((int32_t)34)))) { goto IL_017c; } } { Il2CppChar L_44 = V_2; if ((((int32_t)L_44) == ((int32_t)((int32_t)38)))) { goto IL_013c; } } { goto IL_01a9; } IL_00d2: { Il2CppChar L_45 = V_2; if ((((int32_t)L_45) == ((int32_t)((int32_t)39)))) { goto IL_014c; } } { Il2CppChar L_46 = V_2; if ((((int32_t)L_46) == ((int32_t)((int32_t)60)))) { goto IL_011c; } } { Il2CppChar L_47 = V_2; if ((((int32_t)L_47) == ((int32_t)((int32_t)62)))) { goto IL_012c; } } { goto IL_01a9; } IL_00e6: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_48 = __this->___textWriter_0; Il2CppChar L_49 = V_2; NullCheck(L_48); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_48, L_49); goto IL_01ed; } IL_00f7: { bool L_50 = __this->___inAttribute_1; if (!L_50) { goto IL_010b; } } { Il2CppChar L_51 = V_2; XmlTextEncoder_WriteCharEntityImpl_m1ACBC7CA8215F706FA03FED4B6DB523B11F3601A(__this, L_51, NULL); goto IL_01ed; } IL_010b: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_52 = __this->___textWriter_0; Il2CppChar L_53 = V_2; NullCheck(L_52); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_52, L_53); goto IL_01ed; } IL_011c: { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9, NULL); goto IL_01ed; } IL_012c: { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B, NULL); goto IL_01ed; } IL_013c: { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62, NULL); goto IL_01ed; } IL_014c: { bool L_54 = __this->___inAttribute_1; if (!L_54) { goto IL_016d; } } { Il2CppChar L_55 = __this->___quoteChar_2; Il2CppChar L_56 = V_2; if ((!(((uint32_t)L_55) == ((uint32_t)L_56)))) { goto IL_016d; } } { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12, NULL); goto IL_01ed; } IL_016d: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_57 = __this->___textWriter_0; NullCheck(L_57); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_57, ((int32_t)39)); goto IL_01ed; } IL_017c: { bool L_58 = __this->___inAttribute_1; if (!L_58) { goto IL_019a; } } { Il2CppChar L_59 = __this->___quoteChar_2; Il2CppChar L_60 = V_2; if ((!(((uint32_t)L_59) == ((uint32_t)L_60)))) { goto IL_019a; } } { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406, NULL); goto IL_01ed; } IL_019a: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_61 = __this->___textWriter_0; NullCheck(L_61); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_61, ((int32_t)34)); goto IL_01ed; } IL_01a9: { Il2CppChar L_62 = V_2; bool L_63; L_63 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_62, NULL); if (!L_63) { goto IL_01d7; } } { int32_t L_64 = V_1; int32_t L_65 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_64, 1))) >= ((int32_t)L_65))) { goto IL_01c7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_66 = ___array0; int32_t L_67 = V_1; int32_t L_68 = ((int32_t)il2cpp_codegen_add(L_67, 1)); V_1 = L_68; NullCheck(L_66); int32_t L_69 = L_68; uint16_t L_70 = (uint16_t)(L_66)->GetAt(static_cast(L_69)); Il2CppChar L_71 = V_2; XmlTextEncoder_WriteSurrogateChar_m81A912C37647DE260C756097A6188DFA25BB1EDB(__this, L_70, L_71, NULL); goto IL_01ed; } IL_01c7: { String_t* L_72; L_72 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral03122A403A679966DEF28BDE4E3CA2CDC2A2390A)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_73 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_73); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_73, L_72, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var))); } IL_01d7: { Il2CppChar L_74 = V_2; bool L_75; L_75 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_74, NULL); if (!L_75) { goto IL_01e6; } } { Il2CppChar L_76 = V_2; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_77; L_77 = XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C(L_76, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131_RuntimeMethod_var))); } IL_01e6: { Il2CppChar L_78 = V_2; XmlTextEncoder_WriteCharEntityImpl_m1ACBC7CA8215F706FA03FED4B6DB523B11F3601A(__this, L_78, NULL); } IL_01ed: { int32_t L_79 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_79, 1)); goto IL_005e; } IL_01f6: { return; } } // System.Void System.Xml.XmlTextEncoder::WriteSurrogateCharEntity(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteSurrogateCharEntity_mA18F7DC2EB852A7313F82E2AD7B2F9B9BBD537B5 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Il2CppChar L_0 = ___lowChar0; bool L_1; L_1 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_0, NULL); if (!L_1) { goto IL_0010; } } { Il2CppChar L_2 = ___highChar1; bool L_3; L_3 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_2, NULL); if (L_3) { goto IL_0018; } } IL_0010: { Il2CppChar L_4 = ___lowChar0; Il2CppChar L_5 = ___highChar1; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_6; L_6 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(L_4, L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteSurrogateCharEntity_mA18F7DC2EB852A7313F82E2AD7B2F9B9BBD537B5_RuntimeMethod_var))); } IL_0018: { Il2CppChar L_7 = ___lowChar0; Il2CppChar L_8 = ___highChar1; int32_t L_9; L_9 = XmlCharType_CombineSurrogateChar_mCCBF257D9AE510DB9D3AA852848DCEB8AE0B9512(L_7, L_8, NULL); V_0 = L_9; bool L_10 = __this->___cacheAttrValue_4; if (!L_10) { goto IL_0042; } } { StringBuilder_t* L_11 = __this->___attrValue_3; Il2CppChar L_12 = ___highChar1; NullCheck(L_11); StringBuilder_t* L_13; L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_11, L_12, NULL); StringBuilder_t* L_14 = __this->___attrValue_3; Il2CppChar L_15 = ___lowChar0; NullCheck(L_14); StringBuilder_t* L_16; L_16 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, L_15, NULL); } IL_0042: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_17 = __this->___textWriter_0; NullCheck(L_17); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_17, _stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_18 = __this->___textWriter_0; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_19; L_19 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL); String_t* L_20; L_20 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_19, NULL); NullCheck(L_18); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_18, L_20); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_21 = __this->___textWriter_0; NullCheck(L_21); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_21, ((int32_t)59)); return; } } // System.Void System.Xml.XmlTextEncoder::Write(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Il2CppChar V_3 = 0x0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_4 = NULL; { String_t* L_0 = ___text0; if (L_0) { goto IL_0004; } } { return; } IL_0004: { bool L_1 = __this->___cacheAttrValue_4; if (!L_1) { goto IL_0019; } } { StringBuilder_t* L_2 = __this->___attrValue_3; String_t* L_3 = ___text0; NullCheck(L_2); StringBuilder_t* L_4; L_4 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_2, L_3, NULL); } IL_0019: { String_t* L_5 = ___text0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); V_0 = L_6; V_1 = 0; V_2 = 0; V_3 = 0; goto IL_002c; } IL_0028: { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1)); } IL_002c: { int32_t L_8 = V_1; int32_t L_9 = V_0; if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_004d; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_10 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10->___charProperties_2; String_t* L_12 = ___text0; int32_t L_13 = V_1; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL); Il2CppChar L_15 = L_14; V_3 = L_15; NullCheck(L_11); Il2CppChar L_16 = L_15; uint8_t L_17 = (L_11)->GetAt(static_cast(L_16)); if (((int32_t)((int32_t)L_17&((int32_t)128)))) { goto IL_0028; } } IL_004d: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((!(((uint32_t)L_18) == ((uint32_t)L_19)))) { goto IL_005e; } } { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_20 = __this->___textWriter_0; String_t* L_21 = ___text0; NullCheck(L_20); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_20, L_21); return; } IL_005e: { bool L_22 = __this->___inAttribute_1; if (!L_22) { goto IL_0071; } } { Il2CppChar L_23 = V_3; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)9))))) { goto IL_0090; } } { int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1)); goto IL_002c; } IL_0071: { Il2CppChar L_25 = V_3; if ((((int32_t)L_25) == ((int32_t)((int32_t)9)))) { goto IL_008a; } } { Il2CppChar L_26 = V_3; if ((((int32_t)L_26) == ((int32_t)((int32_t)10)))) { goto IL_008a; } } { Il2CppChar L_27 = V_3; if ((((int32_t)L_27) == ((int32_t)((int32_t)13)))) { goto IL_008a; } } { Il2CppChar L_28 = V_3; if ((((int32_t)L_28) == ((int32_t)((int32_t)34)))) { goto IL_008a; } } { Il2CppChar L_29 = V_3; if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)39))))) { goto IL_0090; } } IL_008a: { int32_t L_30 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_30, 1)); goto IL_002c; } IL_0090: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); V_4 = L_31; } IL_009c: { int32_t L_32 = V_2; int32_t L_33 = V_1; if ((((int32_t)L_32) >= ((int32_t)L_33))) { goto IL_00ad; } } { String_t* L_34 = ___text0; int32_t L_35 = V_2; int32_t L_36 = V_1; int32_t L_37 = V_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = V_4; XmlTextEncoder_WriteStringFragment_mC798AEDBDBCA83BA9B7DD619874CF6597B0B3E0A(__this, L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), L_38, NULL); } IL_00ad: { int32_t L_39 = V_1; int32_t L_40 = V_0; if ((((int32_t)L_39) == ((int32_t)L_40))) { goto IL_023a; } } { Il2CppChar L_41 = V_3; if ((!(((uint32_t)L_41) <= ((uint32_t)((int32_t)38))))) { goto IL_00e8; } } { Il2CppChar L_42 = V_3; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_42, ((int32_t)9)))) { case 0: { goto IL_00fc; } case 1: { goto IL_010d; } case 2: { goto IL_01bf; } case 3: { goto IL_01bf; } case 4: { goto IL_010d; } } } { Il2CppChar L_43 = V_3; if ((((int32_t)L_43) == ((int32_t)((int32_t)34)))) { goto IL_0192; } } { Il2CppChar L_44 = V_3; if ((((int32_t)L_44) == ((int32_t)((int32_t)38)))) { goto IL_0152; } } { goto IL_01bf; } IL_00e8: { Il2CppChar L_45 = V_3; if ((((int32_t)L_45) == ((int32_t)((int32_t)39)))) { goto IL_0162; } } { Il2CppChar L_46 = V_3; if ((((int32_t)L_46) == ((int32_t)((int32_t)60)))) { goto IL_0132; } } { Il2CppChar L_47 = V_3; if ((((int32_t)L_47) == ((int32_t)((int32_t)62)))) { goto IL_0142; } } { goto IL_01bf; } IL_00fc: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_48 = __this->___textWriter_0; Il2CppChar L_49 = V_3; NullCheck(L_48); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_48, L_49); goto IL_0205; } IL_010d: { bool L_50 = __this->___inAttribute_1; if (!L_50) { goto IL_0121; } } { Il2CppChar L_51 = V_3; XmlTextEncoder_WriteCharEntityImpl_m1ACBC7CA8215F706FA03FED4B6DB523B11F3601A(__this, L_51, NULL); goto IL_0205; } IL_0121: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_52 = __this->___textWriter_0; Il2CppChar L_53 = V_3; NullCheck(L_52); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_52, L_53); goto IL_0205; } IL_0132: { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9, NULL); goto IL_0205; } IL_0142: { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B, NULL); goto IL_0205; } IL_0152: { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62, NULL); goto IL_0205; } IL_0162: { bool L_54 = __this->___inAttribute_1; if (!L_54) { goto IL_0183; } } { Il2CppChar L_55 = __this->___quoteChar_2; Il2CppChar L_56 = V_3; if ((!(((uint32_t)L_55) == ((uint32_t)L_56)))) { goto IL_0183; } } { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12, NULL); goto IL_0205; } IL_0183: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_57 = __this->___textWriter_0; NullCheck(L_57); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_57, ((int32_t)39)); goto IL_0205; } IL_0192: { bool L_58 = __this->___inAttribute_1; if (!L_58) { goto IL_01b0; } } { Il2CppChar L_59 = __this->___quoteChar_2; Il2CppChar L_60 = V_3; if ((!(((uint32_t)L_59) == ((uint32_t)L_60)))) { goto IL_01b0; } } { XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406, NULL); goto IL_0205; } IL_01b0: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_61 = __this->___textWriter_0; NullCheck(L_61); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_61, ((int32_t)34)); goto IL_0205; } IL_01bf: { Il2CppChar L_62 = V_3; bool L_63; L_63 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_62, NULL); if (!L_63) { goto IL_01ef; } } { int32_t L_64 = V_1; int32_t L_65 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_64, 1))) >= ((int32_t)L_65))) { goto IL_01e1; } } { String_t* L_66 = ___text0; int32_t L_67 = V_1; int32_t L_68 = ((int32_t)il2cpp_codegen_add(L_67, 1)); V_1 = L_68; NullCheck(L_66); Il2CppChar L_69; L_69 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_66, L_68, NULL); Il2CppChar L_70 = V_3; XmlTextEncoder_WriteSurrogateChar_m81A912C37647DE260C756097A6188DFA25BB1EDB(__this, L_69, L_70, NULL); goto IL_0205; } IL_01e1: { String_t* L_71 = ___text0; int32_t L_72 = V_1; NullCheck(L_71); Il2CppChar L_73; L_73 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_71, L_72, NULL); Il2CppChar L_74 = V_3; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_75; L_75 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(L_73, L_74, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_75, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4_RuntimeMethod_var))); } IL_01ef: { Il2CppChar L_76 = V_3; bool L_77; L_77 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_76, NULL); if (!L_77) { goto IL_01fe; } } { Il2CppChar L_78 = V_3; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_79; L_79 = XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C(L_78, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4_RuntimeMethod_var))); } IL_01fe: { Il2CppChar L_80 = V_3; XmlTextEncoder_WriteCharEntityImpl_m1ACBC7CA8215F706FA03FED4B6DB523B11F3601A(__this, L_80, NULL); } IL_0205: { int32_t L_81 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_81, 1)); int32_t L_82 = V_1; V_2 = L_82; goto IL_0211; } IL_020d: { int32_t L_83 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_83, 1)); } IL_0211: { int32_t L_84 = V_1; int32_t L_85 = V_0; if ((((int32_t)L_84) >= ((int32_t)L_85))) { goto IL_009c; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_86 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_87 = L_86->___charProperties_2; String_t* L_88 = ___text0; int32_t L_89 = V_1; NullCheck(L_88); Il2CppChar L_90; L_90 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_88, L_89, NULL); Il2CppChar L_91 = L_90; V_3 = L_91; NullCheck(L_87); Il2CppChar L_92 = L_91; uint8_t L_93 = (L_87)->GetAt(static_cast(L_92)); if (((int32_t)((int32_t)L_93&((int32_t)128)))) { goto IL_020d; } } { goto IL_009c; } IL_023a: { return; } } // System.Void System.Xml.XmlTextEncoder::WriteRawWithSurrogateChecking(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___text0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; Il2CppChar V_3 = 0x0; { String_t* L_0 = ___text0; if (L_0) { goto IL_0004; } } { return; } IL_0004: { bool L_1 = __this->___cacheAttrValue_4; if (!L_1) { goto IL_0019; } } { StringBuilder_t* L_2 = __this->___attrValue_3; String_t* L_3 = ___text0; NullCheck(L_2); StringBuilder_t* L_4; L_4 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_2, L_3, NULL); } IL_0019: { String_t* L_5 = ___text0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); V_0 = L_6; V_1 = 0; V_2 = 0; goto IL_002a; } IL_0026: { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1)); } IL_002a: { int32_t L_8 = V_1; int32_t L_9 = V_0; if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_004d; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_10 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10->___charProperties_2; String_t* L_12 = ___text0; int32_t L_13 = V_1; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL); Il2CppChar L_15 = L_14; V_2 = L_15; NullCheck(L_11); Il2CppChar L_16 = L_15; uint8_t L_17 = (L_11)->GetAt(static_cast(L_16)); if (((int32_t)((int32_t)L_17&((int32_t)16)))) { goto IL_0026; } } { Il2CppChar L_18 = V_2; if ((((int32_t)L_18) < ((int32_t)((int32_t)32)))) { goto IL_0026; } } IL_004d: { int32_t L_19 = V_1; int32_t L_20 = V_0; if ((((int32_t)L_19) == ((int32_t)L_20))) { goto IL_00a4; } } { Il2CppChar L_21 = V_2; bool L_22; L_22 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_21, NULL); if (!L_22) { goto IL_008f; } } { int32_t L_23 = V_1; int32_t L_24 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_23, 1))) >= ((int32_t)L_24))) { goto IL_007f; } } { String_t* L_25 = ___text0; int32_t L_26 = V_1; NullCheck(L_25); Il2CppChar L_27; L_27 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_25, ((int32_t)il2cpp_codegen_add(L_26, 1)), NULL); V_3 = L_27; Il2CppChar L_28 = V_3; bool L_29; L_29 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_28, NULL); if (!L_29) { goto IL_0077; } } { int32_t L_30 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_30, 2)); goto IL_002a; } IL_0077: { Il2CppChar L_31 = V_3; Il2CppChar L_32 = V_2; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_33; L_33 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(L_31, L_32, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00_RuntimeMethod_var))); } IL_007f: { String_t* L_34; L_34 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_35); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_35, L_34, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00_RuntimeMethod_var))); } IL_008f: { Il2CppChar L_36 = V_2; bool L_37; L_37 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_36, NULL); if (!L_37) { goto IL_009e; } } { Il2CppChar L_38 = V_2; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); Exception_t* L_39; L_39 = XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C(L_38, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00_RuntimeMethod_var))); } IL_009e: { int32_t L_40 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_40, 1)); goto IL_002a; } IL_00a4: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_41 = __this->___textWriter_0; String_t* L_42 = ___text0; NullCheck(L_41); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_41, L_42); return; } } // System.Void System.Xml.XmlTextEncoder::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___count2; if ((((int32_t)0) <= ((int32_t)L_2))) { goto IL_001d; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___offset1; if ((((int32_t)0) <= ((int32_t)L_4))) { goto IL_002c; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7_RuntimeMethod_var))); } IL_002c: { int32_t L_6 = ___count2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___array0; NullCheck(L_7); int32_t L_8 = ___offset1; if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8))))) { goto IL_003f; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7_RuntimeMethod_var))); } IL_003f: { bool L_10 = __this->___cacheAttrValue_4; if (!L_10) { goto IL_0056; } } { StringBuilder_t* L_11 = __this->___attrValue_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = ___array0; int32_t L_13 = ___offset1; int32_t L_14 = ___count2; NullCheck(L_11); StringBuilder_t* L_15; L_15 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_11, L_12, L_13, L_14, NULL); } IL_0056: { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_16 = __this->___textWriter_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ___array0; int32_t L_18 = ___offset1; int32_t L_19 = ___count2; NullCheck(L_16); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_16, L_17, L_18, L_19); return; } } // System.Void System.Xml.XmlTextEncoder::WriteCharEntity(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteCharEntity_m591FE258908A35F6DD68111001E3F753603A83EE (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; { Il2CppChar L_0 = ___ch0; bool L_1; L_1 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_0, NULL); if (!L_1) { goto IL_0018; } } { String_t* L_2; L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextEncoder_WriteCharEntity_m591FE258908A35F6DD68111001E3F753603A83EE_RuntimeMethod_var))); } IL_0018: { Il2CppChar L_4 = ___ch0; V_1 = L_4; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_5; L_5 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL); String_t* L_6; L_6 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_1), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_5, NULL); V_0 = L_6; bool L_7 = __this->___cacheAttrValue_4; if (!L_7) { goto IL_0060; } } { StringBuilder_t* L_8 = __this->___attrValue_3; NullCheck(L_8); StringBuilder_t* L_9; L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, _stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F, NULL); StringBuilder_t* L_10 = __this->___attrValue_3; String_t* L_11 = V_0; NullCheck(L_10); StringBuilder_t* L_12; L_12 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, L_11, NULL); StringBuilder_t* L_13 = __this->___attrValue_3; NullCheck(L_13); StringBuilder_t* L_14; L_14 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_13, ((int32_t)59), NULL); } IL_0060: { String_t* L_15 = V_0; XmlTextEncoder_WriteCharEntityImpl_m700BFAD8FCCB6BC22471CD185A4CBC2B6C2F1CF0(__this, L_15, NULL); return; } } // System.Void System.Xml.XmlTextEncoder::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteEntityRef_mF547A873462F0D3DC2DB310A89E86146355B3ED4 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___name0, const RuntimeMethod* method) { { bool L_0 = __this->___cacheAttrValue_4; if (!L_0) { goto IL_0031; } } { StringBuilder_t* L_1 = __this->___attrValue_3; NullCheck(L_1); StringBuilder_t* L_2; L_2 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_1, ((int32_t)38), NULL); StringBuilder_t* L_3 = __this->___attrValue_3; String_t* L_4 = ___name0; NullCheck(L_3); StringBuilder_t* L_5; L_5 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, L_4, NULL); StringBuilder_t* L_6 = __this->___attrValue_3; NullCheck(L_6); StringBuilder_t* L_7; L_7 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_6, ((int32_t)59), NULL); } IL_0031: { String_t* L_8 = ___name0; XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019(__this, L_8, NULL); return; } } // System.Void System.Xml.XmlTextEncoder::WriteStringFragment(System.String,System.Int32,System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteStringFragment_mC798AEDBDBCA83BA9B7DD619874CF6597B0B3E0A (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___str0, int32_t ___offset1, int32_t ___count2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___helperBuffer3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___helperBuffer3; NullCheck(L_0); V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length)); goto IL_0033; } IL_0007: { int32_t L_1 = ___count2; V_1 = L_1; int32_t L_2 = V_1; int32_t L_3 = V_0; if ((((int32_t)L_2) <= ((int32_t)L_3))) { goto IL_000f; } } { int32_t L_4 = V_0; V_1 = L_4; } IL_000f: { String_t* L_5 = ___str0; int32_t L_6 = ___offset1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___helperBuffer3; int32_t L_8 = V_1; NullCheck(L_5); String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_5, L_6, L_7, 0, L_8, NULL); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___textWriter_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___helperBuffer3; int32_t L_11 = V_1; NullCheck(L_9); VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_9, L_10, 0, L_11); int32_t L_12 = ___offset1; int32_t L_13 = V_1; ___offset1 = ((int32_t)il2cpp_codegen_add(L_12, L_13)); int32_t L_14 = ___count2; int32_t L_15 = V_1; ___count2 = ((int32_t)il2cpp_codegen_subtract(L_14, L_15)); } IL_0033: { int32_t L_16 = ___count2; if ((((int32_t)L_16) > ((int32_t)0))) { goto IL_0007; } } { return; } } // System.Void System.Xml.XmlTextEncoder::WriteCharEntityImpl(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteCharEntityImpl_m1ACBC7CA8215F706FA03FED4B6DB523B11F3601A (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Il2CppChar L_0 = ___ch0; V_0 = L_0; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1; L_1 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL); String_t* L_2; L_2 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_1, NULL); XmlTextEncoder_WriteCharEntityImpl_m700BFAD8FCCB6BC22471CD185A4CBC2B6C2F1CF0(__this, L_2, NULL); return; } } // System.Void System.Xml.XmlTextEncoder::WriteCharEntityImpl(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteCharEntityImpl_m700BFAD8FCCB6BC22471CD185A4CBC2B6C2F1CF0 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___strVal0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F); s_Il2CppMethodInitialized = true; } { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_0; NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_0, _stringLiteralCEB6890FC169A5D98961042EBCAD0677F2F0656F); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = __this->___textWriter_0; String_t* L_2 = ___strVal0; NullCheck(L_1); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_1, L_2); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = __this->___textWriter_0; NullCheck(L_3); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_3, ((int32_t)59)); return; } } // System.Void System.Xml.XmlTextEncoder::WriteEntityRefImpl(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteEntityRefImpl_m3177B6466CF31B15DD0A4937BEED5178673ED019 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___name0, const RuntimeMethod* method) { { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_0; NullCheck(L_0); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_0, ((int32_t)38)); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = __this->___textWriter_0; String_t* L_2 = ___name0; NullCheck(L_1); VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_1, L_2); TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = __this->___textWriter_0; NullCheck(L_3); VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_3, ((int32_t)59)); 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.XmlTextReader::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_m45B72D41BD62F0D300A832BACFC7B9209FD80ABA (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___input0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_1 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_1); XmlTextReaderImpl__ctor_m3C50D8232C68E494E862D958C58D6D1CCA326B0B(L_1, L_0, NULL); __this->___impl_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___impl_3), (void*)L_1); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_2 = __this->___impl_3; NullCheck(L_2); XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline(L_2, __this, NULL); return; } } // System.Void System.Xml.XmlTextReader::.ctor(System.String,System.IO.Stream,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_mF7037716093692B7096D2E90B3B7704D89598CBE (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___url0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input1, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); String_t* L_0 = ___url0; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___input1; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = ___nt2; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_3 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_3); XmlTextReaderImpl__ctor_mE0541503471E5E4712F0A74935F45021E9E38676(L_3, L_0, L_1, L_2, NULL); __this->___impl_3 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___impl_3), (void*)L_3); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_4 = __this->___impl_3; NullCheck(L_4); XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline(L_4, __this, NULL); return; } } // System.Void System.Xml.XmlTextReader::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_mC97F8050EA5BC3E461C2B682AF238D00196594AF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___input0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_1 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_1); XmlTextReaderImpl__ctor_mDCBE6668C0E914E66347B3F149EF0CA6BB58629A(L_1, L_0, NULL); __this->___impl_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___impl_3), (void*)L_1); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_2 = __this->___impl_3; NullCheck(L_2); XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline(L_2, __this, NULL); return; } } // System.Void System.Xml.XmlTextReader::.ctor(System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_m71F11D57A03AFBB76268D2696DADFCAC582C0403 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___input0; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = ___nt1; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_2 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_2); XmlTextReaderImpl__ctor_m4EB73D665A505FC387AAC744C3FB7246556BFF5B(L_2, L_0, L_1, NULL); __this->___impl_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___impl_3), (void*)L_2); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_3 = __this->___impl_3; NullCheck(L_3); XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline(L_3, __this, NULL); return; } } // System.Xml.XmlNodeType System.Xml.XmlTextReader::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_NodeType_m3B9F67AD367D3F6C91C758FE1FBD99A0360F0867 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_Name_m2158E920A23DB55E6D7334998B2B92E099018E45 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_LocalName_mE25EF4B095DED60CBFB044A18BD255CD15B888C6 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_NamespaceURI_m8BC37F439DF925261CF7D566AFD80F6FC3582A94 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_Prefix_mA971C9AD832EC9412FAD88B62926ED05BAE9EA37 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_Value_m18A432F22D89A7CFB3D0C2E73CF347D33C5978C3 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_0); return L_1; } } // System.Int32 System.Xml.XmlTextReader::get_Depth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_Depth_m5729D91DFE9C3AA50BC1D4728AD48B982F39BFDE (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_BaseURI_m1FA5A02D6698D3466ABD9C1DE66ACA62E46C07FF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_IsEmptyElement_mEBCDEDE13FFDA542E7BEA22C94E6DAA8A5C9E851 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_IsDefault_m4F636AEF2002474E7520D2D06D391328FF62E238 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_0); return L_1; } } // System.Char System.Xml.XmlTextReader::get_QuoteChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XmlTextReader_get_QuoteChar_m0BA2000B120B2DC11B3080AF63158821B00F1BF4 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); Il2CppChar L_1; L_1 = VirtualFuncInvoker0< Il2CppChar >::Invoke(16 /* System.Char System.Xml.XmlReader::get_QuoteChar() */, L_0); return L_1; } } // System.Xml.XmlSpace System.Xml.XmlTextReader::get_XmlSpace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_XmlSpace_mF1104E9D949B88231073C813DC03CF46A0189DFF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(17 /* System.Xml.XmlSpace System.Xml.XmlReader::get_XmlSpace() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_XmlLang() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_XmlLang_m0713467BACAADD1AD884D432EBC6662D57AC4275 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.XmlReader::get_XmlLang() */, L_0); return L_1; } } // System.Int32 System.Xml.XmlTextReader::get_AttributeCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_AttributeCount_m273749766D3F16E62D579183C3C4D2B36AFC094B (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::GetAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_GetAttribute_m17C29F4A48C0CA5A20C6351B784B665BC4770971 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___name0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___name0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlTextReader::GetAttribute(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_GetAttribute_m481B4E51AABEF96E1438C47AE28106B9B46B2D70 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___localName0; String_t* L_2 = ___namespaceURI1; 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); return L_3; } } // System.String System.Xml.XmlTextReader::GetAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_GetAttribute_mD202D28E58FF829AAB06E36214CF573E767BC9F2 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___i0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; int32_t L_1 = ___i0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(24 /* System.String System.Xml.XmlReader::GetAttribute(System.Int32) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlTextReader::MoveToAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToAttribute_m7CB1E27086FEB3C6DB2EF9A0F5F18BB8C6C4AC7E (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___name0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___name0; NullCheck(L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_0, L_1); return L_2; } } // System.Void System.Xml.XmlTextReader::MoveToAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_MoveToAttribute_m81279848E99EC99036A71DD058E6A8A4A86F7293 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___i0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; int32_t L_1 = ___i0; NullCheck(L_0); VirtualActionInvoker1< int32_t >::Invoke(26 /* System.Void System.Xml.XmlReader::MoveToAttribute(System.Int32) */, L_0, L_1); return; } } // System.Boolean System.Xml.XmlTextReader::MoveToFirstAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToFirstAttribute_m19EEE5278A2250D196DA1C3302CBCCC7E41E223D (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::MoveToNextAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToNextAttribute_m671BBC553423B71FE4E59EEBEED52033F4BA3DA0 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::MoveToElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToElement_mEC029E57AF4FC25BEBBD9964946C233DC6567DF7 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::ReadAttributeValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_ReadAttributeValue_mCAC4969AF9AEEB35FA119A50A80CB6810D8A9B42 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::Read() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_Read_m2E4021768F7E65665701C27CBA53E128E06B7E08 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::get_EOF() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_EOF_m811FB3C8F8838146B19756E924B6D506042B8C7C (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(32 /* System.Boolean System.Xml.XmlReader::get_EOF() */, L_0); return L_1; } } // System.Void System.Xml.XmlTextReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_Close_m39251FF232DC0EAF4282F1FA2771B056C20128C2 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, L_0); return; } } // System.Xml.ReadState System.Xml.XmlTextReader::get_ReadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_ReadState_mEFCF4D4928EE1A0FBF4478BAF8108B28B5A8ECFB (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_0); return L_1; } } // System.Void System.Xml.XmlTextReader::Skip() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_Skip_m084E76AB5DAAEA1F81548ACB1A35AABED8A6346A (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_0); return; } } // System.Xml.XmlNameTable System.Xml.XmlTextReader::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlTextReader_get_NameTable_m9D151BB26753EB396DB80F8AC1C91546106A54B3 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1; L_1 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_LookupNamespace_mF502C3A2FBAD46C2D490FDDBCAF45B08B507B11A (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___prefix0, const RuntimeMethod* method) { String_t* V_0 = NULL; { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___prefix0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_0, L_1); V_0 = L_2; String_t* L_3 = V_0; if (!L_3) { goto IL_001a; } } { String_t* L_4 = V_0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if (L_5) { goto IL_001a; } } { V_0 = (String_t*)NULL; } IL_001a: { String_t* L_6 = V_0; return L_6; } } // System.Boolean System.Xml.XmlTextReader::get_CanResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_CanResolveEntity_mB924E13DFA450427786839768522724B0D784070 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.XmlTextReader::ResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_ResolveEntity_m7714D3979922FB0F29A8C9E8E1786632626C5637 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_0); return; } } // System.Boolean System.Xml.XmlTextReader::get_CanReadValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_CanReadValueChunk_m4F36649B3CDE1E44D6639FCDE9D7D5D97A4A354D (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.String System.Xml.XmlTextReader::ReadString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_ReadString_m514214F4AC17F24E77634F63F537BD7D37C51983 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); XmlTextReaderImpl_MoveOffEntityReference_mA1A8FFC9F91F041D85E01D350BB3824E6534A1B6(L_0, NULL); String_t* L_1; L_1 = XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE(__this, NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReader::HasLineInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_HasLineInfo_m7D820C3E74310498E84A629C49A372F1FB230F19 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { return (bool)1; } } // 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) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_LineNumber_m443B632CB79AF66C3579E9DE0076BCEFBA8785A0(L_0, NULL); return L_1; } } // 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) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_LinePosition_m94FF883CCF40A6A27BC4BA972BD4DF4293FDC4A8(L_0, NULL); return L_1; } } // System.Collections.Generic.IDictionary`2 System.Xml.XmlTextReader::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReader_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_mEA9A0DB809D829AC5A4E64F9847010C4AD611F80 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___scope0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; int32_t L_1 = ___scope0; NullCheck(L_0); RuntimeObject* L_2; L_2 = XmlTextReaderImpl_GetNamespacesInScope_mA03CE089EB011BDAFF02E607734F0D58F4F66810(L_0, L_1, NULL); return L_2; } } // System.String System.Xml.XmlTextReader::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_System_Xml_IXmlNamespaceResolver_LookupNamespace_m34BF5EF84C012BA70EB5F55252B4305ECE0A8543 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___prefix0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___prefix0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlTextReader::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_System_Xml_IXmlNamespaceResolver_LookupPrefix_mA0737B58812DAC3B128E5C75ED67A4E3BCD69638 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___namespaceName0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___namespaceName0; NullCheck(L_0); String_t* L_2; L_2 = XmlTextReaderImpl_LookupPrefix_mF6D85FCBDA270E1AFC2F1AC19719111A1169BD3D(L_0, L_1, NULL); return L_2; } } // System.Boolean System.Xml.XmlTextReader::get_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_Namespaces_m220590158131867B9ADD16219151AF9A2F2CA097 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122_inline(L_0, NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReader::get_Normalization() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_Normalization_m2B6674D27D1ACC46CD069125D49D022C5204873F (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_Normalization_mE15D41565024AE5102E07C09891BC40D027E6529_inline(L_0, NULL); return L_1; } } // System.Void System.Xml.XmlTextReader::set_Normalization(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_Normalization_m768F00DAC7C1B4BAA7F6A39CF041610777680E14 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, bool ___value0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; bool L_1 = ___value0; NullCheck(L_0); XmlTextReaderImpl_set_Normalization_mD7A69A6E43CDBC34521C920727D6981675EA87EA(L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlTextReader::set_WhitespaceHandling(System.Xml.WhitespaceHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_WhitespaceHandling_m7288BA1929C27448D6D26A744C102FA5F2628192 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___value0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; int32_t L_1 = ___value0; NullCheck(L_0); XmlTextReaderImpl_set_WhitespaceHandling_mF03CD74F490259694D1CF7D60C5EC59CEA03B267(L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlTextReader::set_EntityHandling(System.Xml.EntityHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_EntityHandling_m577ABFEC373C39B83965619901EF1492C950C3BF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___value0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; int32_t L_1 = ___value0; NullCheck(L_0); XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C(L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlTextReader::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = ___value0; NullCheck(L_0); XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775(L_0, L_1, NULL); return; } } // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::get_Impl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; return L_0; } } // System.Xml.XmlNamespaceManager System.Xml.XmlTextReader::get_NamespaceManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlTextReader_get_NamespaceManager_m52AB32D6208FED9CAF4292B5D0BE2C78D753CB2C (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1; L_1 = VirtualFuncInvoker0< XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* >::Invoke(51 /* System.Xml.XmlNamespaceManager System.Xml.XmlReader::get_NamespaceManager() */, L_0); return L_1; } } // System.Void System.Xml.XmlTextReader::set_XmlValidatingReaderCompatibilityMode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlValidatingReaderCompatibilityMode_m485400A0FF8B647B0BA4D98CB46354AC258B7C00 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, bool ___value0, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; bool L_1 = ___value0; NullCheck(L_0); XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380(L_0, L_1, NULL); return; } } // System.Xml.IDtdInfo System.Xml.XmlTextReader::get_DtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReader_get_DtdInfo_mDC18B7E28951B920566CD40801890B1EA41EB993 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_0); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m95CE478B1EC30C779E195BB91D4918BCBB6D6D2A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0; L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL); __this->___xmlCharType_5 = L_0; Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_5))->___charProperties_2), (void*)NULL); __this->___curAttrIndex_13 = (-1); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___url_23 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___url_23), (void*)L_1); __this->___supportNamespaces_25 = (bool)1; __this->___dtdProcessing_27 = 2; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___lastPrefix_39 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastPrefix_39), (void*)L_2); __this->___parsingStatesStackTop_42 = (-1); __this->___fragmentType_46 = ((int32_t)9); __this->___nextEntityId_64 = 1; Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9* L_3 = (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9*)il2cpp_codegen_object_new(Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_il2cpp_TypeInfo_var); NullCheck(L_3); Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8(L_3, 0, 0, 0, (bool)0, Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var); Task_1_tB493F74D58DB1761E087206849D953E99D07600B* L_4; L_4 = Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B(L_3, Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B_RuntimeMethod_var); __this->___parseText_dummyTask_79 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___parseText_dummyTask_79), (void*)L_4); il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); __this->___v1Compat_37 = (bool)1; __this->___outerReader_75 = __this; Il2CppCodeGenWriteBarrier((void**)(&__this->___outerReader_75), (void*)__this); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = ___nt0; __this->___nameTable_20 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_20), (void*)L_5); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = ___nt0; String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; 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); bool L_9; L_9 = XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB(NULL); if (L_9) { goto IL_0097; } } { __this->___xmlResolver_22 = (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_22), (void*)(XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL); goto IL_00a2; } IL_0097: { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_10 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_10); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_10, NULL); __this->___xmlResolver_22 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_22), (void*)L_10); } IL_00a2: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_11 = ___nt0; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_11, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); __this->___Xml_77 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___Xml_77), (void*)L_12); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_13 = ___nt0; 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, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); __this->___XmlNs_78 = L_14; Il2CppCodeGenWriteBarrier((void**)(&__this->___XmlNs_78), (void*)L_14); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_15 = (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)SZArrayNew(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var, (uint32_t)8); __this->___nodes_10 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodes_10), (void*)L_15); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_16 = __this->___nodes_10; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_17 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_17); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_17, NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_17); (L_16)->SetAt(static_cast(0), (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)L_17); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_18 = __this->___nodes_10; NullCheck(L_18); int32_t L_19 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20 = (L_18)->GetAt(static_cast(L_19)); __this->___curNode_11 = L_20; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_20); StringBuilder_t* L_21 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_21); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_21, NULL); __this->___stringBuilder_61 = L_21; Il2CppCodeGenWriteBarrier((void**)(&__this->___stringBuilder_61), (void*)L_21); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_22 = (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE*)il2cpp_codegen_object_new(XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var); NullCheck(L_22); XmlContext__ctor_m25BE385DE1A217481A4723BC19A422E3982B3AA8(L_22, NULL); __this->___xmlContext_40 = L_22; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlContext_40), (void*)L_22); __this->___parsingFunction_7 = 4; __this->___nextParsingFunction_8 = 5; __this->___entityHandling_28 = 2; __this->___whitespaceHandling_26 = 0; __this->___closeInput_34 = (bool)1; __this->___maxCharactersInDocument_35 = ((int64_t)0); __this->___maxCharactersFromEntities_36 = ((int64_t)((int32_t)10000000)); __this->___charactersInDocument_71 = ((int64_t)0); __this->___charactersFromEntities_72 = ((int64_t)0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); L_23->___lineNo_11 = 1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); L_24->___lineStartPos_12 = (-1); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.Xml.XmlResolver,System.Xml.XmlReaderSettings,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mCBF9A4F27E425C86BCFCF7D47C9731EF2DAAA31F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_0 = NULL; int32_t V_1 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B8_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B7_0 = NULL; int32_t G_B9_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B9_1 = NULL; { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0; L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL); __this->___xmlCharType_5 = L_0; Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_5))->___charProperties_2), (void*)NULL); __this->___curAttrIndex_13 = (-1); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___url_23 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___url_23), (void*)L_1); __this->___supportNamespaces_25 = (bool)1; __this->___dtdProcessing_27 = 2; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___lastPrefix_39 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastPrefix_39), (void*)L_2); __this->___parsingStatesStackTop_42 = (-1); __this->___fragmentType_46 = ((int32_t)9); __this->___nextEntityId_64 = 1; Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9* L_3 = (Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9*)il2cpp_codegen_object_new(Tuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_il2cpp_TypeInfo_var); NullCheck(L_3); Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8(L_3, 0, 0, 0, (bool)0, Tuple_4__ctor_m922AB8E1A32CBD203CAFE16015B8C656728E0FE8_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var); Task_1_tB493F74D58DB1761E087206849D953E99D07600B* L_4; L_4 = Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B(L_3, Task_FromResult_TisTuple_4_tEBC96F3E32357E20775BD456F010C21BC580DEC9_mF8F8A25D9745179DA67DC003B351D08031FC7F2B_RuntimeMethod_var); __this->___parseText_dummyTask_79 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___parseText_dummyTask_79), (void*)L_4); il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_5 = ___settings1; NullCheck(L_5); bool L_6; L_6 = XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5_inline(L_5, NULL); __this->___useAsync_3 = L_6; __this->___v1Compat_37 = (bool)0; __this->___outerReader_75 = __this; Il2CppCodeGenWriteBarrier((void**)(&__this->___outerReader_75), (void*)__this); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_7 = (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE*)il2cpp_codegen_object_new(XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var); NullCheck(L_7); XmlContext__ctor_m25BE385DE1A217481A4723BC19A422E3982B3AA8(L_7, NULL); __this->___xmlContext_40 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlContext_40), (void*)L_7); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_8 = ___settings1; NullCheck(L_8); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9; L_9 = XmlReaderSettings_get_NameTable_mAF10C63E556531DDED4ABA060B60FA89D0D263BE_inline(L_8, NULL); V_0 = L_9; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_10 = ___context2; if (L_10) { goto IL_00bc; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_11 = V_0; if (L_11) { goto IL_00a0; } } { NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_12 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_12); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_12, NULL); V_0 = L_12; goto IL_00a7; } IL_00a0: { __this->___nameTableFromSettings_21 = (bool)1; } IL_00a7: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_13 = V_0; __this->___nameTable_20 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_20), (void*)L_13); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_14 = V_0; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_15 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_15); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_15, L_14, NULL); __this->___namespaceManager_38 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_15); goto IL_00cb; } IL_00bc: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_16 = ___context2; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_17 = ___settings1; XmlTextReaderImpl_SetupFromParserContext_mF77555EDF43C9D83D93F376F3A446C4824C1C2FA(__this, L_16, L_17, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18 = __this->___nameTable_20; V_0 = L_18; } IL_00cb: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_19 = V_0; String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_19); String_t* L_21; L_21 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_19, L_20); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22 = V_0; 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, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); __this->___Xml_77 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___Xml_77), (void*)L_23); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_24 = V_0; NullCheck(L_24); String_t* L_25; L_25 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_24, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); __this->___XmlNs_78 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___XmlNs_78), (void*)L_25); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_26 = ___resolver0; __this->___xmlResolver_22 = L_26; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_22), (void*)L_26); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_27 = (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)SZArrayNew(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var, (uint32_t)8); __this->___nodes_10 = L_27; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodes_10), (void*)L_27); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_28 = __this->___nodes_10; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_29 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_29); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_29, NULL); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_29); (L_28)->SetAt(static_cast(0), (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)L_29); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_30 = __this->___nodes_10; NullCheck(L_30); int32_t L_31 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_32 = (L_30)->GetAt(static_cast(L_31)); __this->___curNode_11 = L_32; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_32); StringBuilder_t* L_33 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_33); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_33, NULL); __this->___stringBuilder_61 = L_33; Il2CppCodeGenWriteBarrier((void**)(&__this->___stringBuilder_61), (void*)L_33); __this->___entityHandling_28 = 1; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_34 = ___settings1; NullCheck(L_34); bool L_35; L_35 = XmlReaderSettings_get_IsXmlResolverSet_mBE7710812B7872C2622B19D7582E8BB43D82EE50_inline(L_34, NULL); __this->___xmlResolverIsSet_76 = L_35; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_36 = ___settings1; NullCheck(L_36); bool L_37; L_37 = XmlReaderSettings_get_IgnoreWhitespace_mB0490662AA55A785F86A219B1A9317246868AF33_inline(L_36, NULL); G_B7_0 = __this; if (L_37) { G_B8_0 = __this; goto IL_0151; } } { G_B9_0 = 0; G_B9_1 = G_B7_0; goto IL_0152; } IL_0151: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_0152: { NullCheck(G_B9_1); G_B9_1->___whitespaceHandling_26 = G_B9_0; __this->___normalize_24 = (bool)1; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_38 = ___settings1; NullCheck(L_38); bool L_39; L_39 = XmlReaderSettings_get_IgnoreProcessingInstructions_mF0F6DF6AA4090054BE46DB02400F18CEC5FC850A_inline(L_38, NULL); __this->___ignorePIs_29 = L_39; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_40 = ___settings1; NullCheck(L_40); bool L_41; L_41 = XmlReaderSettings_get_IgnoreComments_m84AF33F6BBE1C9AF5CD0FB0665B923816CED496F_inline(L_40, NULL); __this->___ignoreComments_30 = L_41; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_42 = ___settings1; NullCheck(L_42); bool L_43; L_43 = XmlReaderSettings_get_CheckCharacters_m92427DD940718F4E7703229BC80C698DA77A6F35_inline(L_42, NULL); __this->___checkCharacters_31 = L_43; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_44 = ___settings1; NullCheck(L_44); int32_t L_45; L_45 = XmlReaderSettings_get_LineNumberOffset_m1A1AC89A54212AD35ABA966620FD66EE6DF6963A_inline(L_44, NULL); __this->___lineNumberOffset_32 = L_45; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_46 = ___settings1; NullCheck(L_46); int32_t L_47; L_47 = XmlReaderSettings_get_LinePositionOffset_m77D589900D124C6DAD97C42186A63260F877BF52_inline(L_46, NULL); __this->___linePositionOffset_33 = L_47; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_48 = (&__this->___ps_6); int32_t L_49 = __this->___lineNumberOffset_32; L_48->___lineNo_11 = ((int32_t)il2cpp_codegen_add(L_49, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); int32_t L_51 = __this->___linePositionOffset_33; L_50->___lineStartPos_12 = ((int32_t)il2cpp_codegen_subtract(((-L_51)), 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_52 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54; L_54 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_53, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t L_56; L_56 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_55, NULL); NullCheck(L_52); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_52, ((int32_t)il2cpp_codegen_subtract(L_54, 1)), ((int32_t)il2cpp_codegen_subtract(L_56, 1)), NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_57 = ___settings1; NullCheck(L_57); int32_t L_58; L_58 = XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F_inline(L_57, NULL); __this->___dtdProcessing_27 = L_58; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_59 = ___settings1; NullCheck(L_59); int64_t L_60; L_60 = XmlReaderSettings_get_MaxCharactersInDocument_mBF86AACB085807A6D3E9936CF287051D34F5261C_inline(L_59, NULL); __this->___maxCharactersInDocument_35 = L_60; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_61 = ___settings1; NullCheck(L_61); int64_t L_62; L_62 = XmlReaderSettings_get_MaxCharactersFromEntities_mFFA78372DCCFF598DEC760725FA69CAB89A651C3_inline(L_61, NULL); __this->___maxCharactersFromEntities_36 = L_62; __this->___charactersInDocument_71 = ((int64_t)0); __this->___charactersFromEntities_72 = ((int64_t)0); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_63 = ___context2; __this->___fragmentParserContext_47 = L_63; Il2CppCodeGenWriteBarrier((void**)(&__this->___fragmentParserContext_47), (void*)L_63); __this->___parsingFunction_7 = 4; __this->___nextParsingFunction_8 = 5; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_64 = ___settings1; NullCheck(L_64); int32_t L_65; L_65 = XmlReaderSettings_get_ConformanceLevel_m56DEADA9ADB805F1C190609DEA42E5322AD109EB_inline(L_64, NULL); V_1 = L_65; int32_t L_66 = V_1; switch (L_66) { case 0: { goto IL_024a; } case 1: { goto IL_0259; } case 2: { goto IL_0268; } } } { goto IL_0268; } IL_024a: { __this->___fragmentType_46 = 0; __this->___fragment_48 = (bool)1; return; } IL_0259: { __this->___fragmentType_46 = 1; __this->___fragment_48 = (bool)1; return; } IL_0268: { __this->___fragmentType_46 = ((int32_t)9); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m3C50D8232C68E494E862D958C58D6D1CCA326B0B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___input0; NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_2 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_2); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_2, NULL); XmlTextReaderImpl__ctor_mE0541503471E5E4712F0A74935F45021E9E38676(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.IO.Stream,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mE0541503471E5E4712F0A74935F45021E9E38676 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___url0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input1, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___nt2; XmlTextReaderImpl__ctor_m95CE478B1EC30C779E195BB91D4918BCBB6D6D2A(__this, L_0, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = ___nt2; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_2); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_2, L_1, NULL); __this->___namespaceManager_38 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_2); String_t* L_3 = ___url0; if (!L_3) { goto IL_001e; } } { String_t* L_4 = ___url0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if (L_5) { goto IL_0028; } } IL_001e: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_6 = ___input1; XmlTextReaderImpl_InitStreamInput_m46F47AB7CDACB319C89A76F6642BFB512C0B5B33(__this, L_6, (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL, NULL); goto IL_0031; } IL_0028: { String_t* L_7 = ___url0; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_8 = ___input1; XmlTextReaderImpl_InitStreamInput_m8F038C9668062037046A6A7B729C5F0430BF5B74(__this, L_7, L_8, (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL, NULL); } IL_0031: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); String_t* L_10 = L_9->___baseUriStr_13; __this->___reportedBaseUri_43 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_10); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12 = L_11->___encoding_3; __this->___reportedEncoding_44 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_12); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mDCBE6668C0E914E66347B3F149EF0CA6BB58629A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_1 = ___input0; NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_2 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_2); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_2, NULL); XmlTextReaderImpl__ctor_m72837CFE0CDDDA6B9495816CC732D3546681A8D8(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m4EB73D665A505FC387AAC744C3FB7246556BFF5B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_1 = ___input0; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = ___nt1; XmlTextReaderImpl__ctor_m72837CFE0CDDDA6B9495816CC732D3546681A8D8(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m72837CFE0CDDDA6B9495816CC732D3546681A8D8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___url0, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input1, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt2, 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*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B2_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B1_0 = NULL; String_t* G_B3_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_1 = NULL; { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___nt2; XmlTextReaderImpl__ctor_m95CE478B1EC30C779E195BB91D4918BCBB6D6D2A(__this, L_0, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = ___nt2; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_2); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_2, L_1, NULL); __this->___namespaceManager_38 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_2); String_t* L_3 = ___url0; G_B1_0 = __this; if (L_3) { G_B2_0 = __this; goto IL_001e; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B3_0 = L_4; G_B3_1 = G_B1_0; goto IL_001f; } IL_001e: { String_t* L_5 = ___url0; G_B3_0 = L_5; G_B3_1 = G_B2_0; } IL_001f: { NullCheck(G_B3_1); G_B3_1->___reportedBaseUri_43 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___reportedBaseUri_43), (void*)G_B3_0); String_t* L_6 = __this->___reportedBaseUri_43; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_7 = ___input1; XmlTextReaderImpl_InitTextReaderInput_mD59812F5A78B70F10C81F8248069530D54289952(__this, L_6, L_7, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_9 = L_8->___encoding_3; __this->___reportedEncoding_44 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_9); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___xmlFragment0, int32_t ___fragType1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B1_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B2_0 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B4_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_1 = NULL; { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_0 = ___context2; G_B1_0 = __this; if (!L_0) { G_B3_0 = __this; goto IL_0014; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_1 = ___context2; NullCheck(L_1); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_1, NULL); G_B2_0 = G_B1_0; if (!L_2) { G_B3_0 = G_B1_0; goto IL_0014; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3 = ___context2; NullCheck(L_3); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_4; L_4 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_3, NULL); G_B4_0 = L_4; G_B4_1 = G_B2_0; goto IL_0019; } IL_0014: { NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_5 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_5); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_5, NULL); G_B4_0 = ((XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)(L_5)); G_B4_1 = G_B3_0; } IL_0019: { XmlTextReaderImpl__ctor_m95CE478B1EC30C779E195BB91D4918BCBB6D6D2A(G_B4_1, G_B4_0, NULL); String_t* L_6 = ___xmlFragment0; if (L_6) { goto IL_0028; } } { String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___xmlFragment0 = L_7; } IL_0028: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = ___context2; if (L_8) { goto IL_003e; } } { String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10; L_10 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); String_t* L_11 = ___xmlFragment0; XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(__this, L_9, L_10, L_11, NULL); goto IL_005c; } IL_003e: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_12 = ___context2; NullCheck(L_12); String_t* L_13; L_13 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_12, NULL); __this->___reportedBaseUri_43 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_13); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_14 = ___context2; NullCheck(L_14); String_t* L_15; L_15 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_14, NULL); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_16; L_16 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); String_t* L_17 = ___xmlFragment0; XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(__this, L_15, L_16, L_17, NULL); } IL_005c: { int32_t L_18 = ___fragType1; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_19 = ___context2; XmlTextReaderImpl_InitFragmentReader_m7217F1675D53546B28937C06DA1B6DBB3D8B83BD(__this, L_18, L_19, (bool)0, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_21 = L_20->___encoding_3; __this->___reportedEncoding_44 = L_21; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_21); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mB17B348B4F2C16D6F06AB86A2803970CA0517303 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___xmlFragment0, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE36FB54A26012ED331BC4EAA26E3796844CF0590); s_Il2CppMethodInitialized = true; } XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B1_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B2_0 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B4_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B6_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B5_0 = NULL; String_t* G_B7_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B7_1 = NULL; { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_0 = ___context1; G_B1_0 = __this; if (!L_0) { G_B3_0 = __this; goto IL_0014; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_1 = ___context1; NullCheck(L_1); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_1, NULL); G_B2_0 = G_B1_0; if (!L_2) { G_B3_0 = G_B1_0; goto IL_0014; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3 = ___context1; NullCheck(L_3); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_4; L_4 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_3, NULL); G_B4_0 = L_4; G_B4_1 = G_B2_0; goto IL_0019; } IL_0014: { NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_5 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_5); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_5, NULL); G_B4_0 = ((XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)(L_5)); G_B4_1 = G_B3_0; } IL_0019: { XmlTextReaderImpl__ctor_m95CE478B1EC30C779E195BB91D4918BCBB6D6D2A(G_B4_1, G_B4_0, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_6 = ___context1; G_B5_0 = __this; if (!L_6) { G_B6_0 = __this; goto IL_002a; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_7 = ___context1; NullCheck(L_7); String_t* L_8; L_8 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_7, NULL); G_B7_0 = L_8; G_B7_1 = G_B5_0; goto IL_002f; } IL_002a: { String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B7_0 = L_9; G_B7_1 = G_B6_0; } IL_002f: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10; L_10 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); String_t* L_11 = ___xmlFragment0; String_t* L_12; L_12 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteralE36FB54A26012ED331BC4EAA26E3796844CF0590, L_11, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB, NULL); NullCheck(G_B7_1); XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(G_B7_1, G_B7_0, L_10, L_12, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_13 = ___context1; XmlTextReaderImpl_InitFragmentReader_m7217F1675D53546B28937C06DA1B6DBB3D8B83BD(__this, ((int32_t)17), L_13, (bool)1, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishInitUriString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInitUriString_m9D1EAAEBEB54E573AA246ECB98CE152B24D576FA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_0 = NULL; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { V_0 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_0 = __this->___laterInitParam_4; NullCheck(L_0); bool L_1 = L_0->___useAsync_0; if (!L_1) { goto IL_004c; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_2 = __this->___laterInitParam_4; NullCheck(L_2); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_3 = L_2->___inputUriResolver_6; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_4 = __this->___laterInitParam_4; NullCheck(L_4); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_5 = L_4->___inputbaseUri_4; String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_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); NullCheck(L_3); Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_9; L_9 = VirtualFuncInvoker3< Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t*, Type_t* >::Invoke(7 /* System.Threading.Tasks.Task`1 System.Xml.XmlResolver::GetEntityAsync(System.Uri,System.String,System.Type) */, L_3, L_5, L_6, L_8); Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_10 = L_9; NullCheck(L_10); Task_Wait_m33955515E36BF6598FCEDA841C8C75F716DE5A4E(L_10, NULL); NullCheck(L_10); RuntimeObject* L_11; L_11 = Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26(L_10, Task_1_get_Result_m6897AA7D4A583F9E81EC01C1BF788372D64C5A26_RuntimeMethod_var); V_0 = ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_11, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)); goto IL_007c; } IL_004c: { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_12 = __this->___laterInitParam_4; NullCheck(L_12); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_13 = L_12->___inputUriResolver_6; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_14 = __this->___laterInitParam_4; NullCheck(L_14); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15 = L_14->___inputbaseUri_4; String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_18; L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL); NullCheck(L_13); RuntimeObject* L_19; L_19 = VirtualFuncInvoker3< RuntimeObject*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t*, Type_t* >::Invoke(4 /* System.Object System.Xml.XmlResolver::GetEntity(System.Uri,System.String,System.Type) */, L_13, L_15, L_16, L_18); V_0 = ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_19, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)); } IL_007c: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_20 = V_0; if (L_20) { goto IL_0095; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_21 = __this->___laterInitParam_4; NullCheck(L_21); String_t* L_22 = L_21->___inputUriStr_5; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_23 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_23); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7EBD7E5381F20CF05FF54841BB8BD75F2397E0CA)), L_22, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_FinishInitUriString_m9D1EAAEBEB54E573AA246ECB98CE152B24D576FA_RuntimeMethod_var))); } IL_0095: { V_1 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_24 = __this->___laterInitParam_4; NullCheck(L_24); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_25 = L_24->___inputContext_7; if (!L_25) { goto IL_00b5; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_26 = __this->___laterInitParam_4; NullCheck(L_26); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_27 = L_26->___inputContext_7; NullCheck(L_27); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_28; L_28 = XmlParserContext_get_Encoding_m70D0D1E92582C7F95EE6E9024771C44129B1AC52_inline(L_27, NULL); V_1 = L_28; } IL_00b5: { } try {// begin try (depth: 1) { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_29 = __this->___laterInitParam_4; NullCheck(L_29); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_30 = L_29->___inputbaseUri_4; String_t* L_31 = __this->___reportedBaseUri_43; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_32 = V_0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_33 = V_1; XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF(__this, L_30, L_31, L_32, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, 0, L_33, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_35 = L_34->___encoding_3; __this->___reportedEncoding_44 = L_35; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_35); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_36 = __this->___laterInitParam_4; NullCheck(L_36); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_37 = L_36->___inputContext_7; if (!L_37) { goto IL_0112_1; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_38 = __this->___laterInitParam_4; NullCheck(L_38); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_39 = L_38->___inputContext_7; NullCheck(L_39); bool L_40; L_40 = XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B(L_39, NULL); if (!L_40) { goto IL_0112_1; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_41 = __this->___laterInitParam_4; NullCheck(L_41); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_42 = L_41->___inputContext_7; XmlTextReaderImpl_ProcessDtdFromParserContext_mC5462F0B3774A760B0F2D7419A97D289D002DD96(__this, L_42, NULL); } IL_0112_1: { goto IL_011d; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0114; } throw e; } CATCH_0114: {// begin catch(System.Object) Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_43 = V_0; NullCheck(L_43); VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_43); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_FinishInitUriString_m9D1EAAEBEB54E573AA246ECB98CE152B24D576FA_RuntimeMethod_var))); }// end catch (depth: 1) IL_011d: { __this->___laterInitParam_4 = (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___laterInitParam_4), (void*)(LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.Stream,System.Byte[],System.Int32,System.Xml.XmlReaderSettings,System.Uri,System.String,System.Xml.XmlParserContext,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mF623EF59677A63009DEA8DAADDA313BCF40E2A20 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes1, int32_t ___byteCount2, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings3, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri4, String_t* ___baseUriStr5, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context6, bool ___closeInput7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A597BBB5531C860DA6FB2829441767F611CCFCC); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = ___settings3; NullCheck(L_0); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1; L_1 = XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010_inline(L_0, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = ___settings3; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3 = ___context6; XmlTextReaderImpl__ctor_mCBF9A4F27E425C86BCFCF7D47C9731EF2DAAA31F(__this, L_1, L_2, L_3, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_4 = ___context6; if (!L_4) { goto IL_0065; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_5 = ___context6; NullCheck(L_5); String_t* L_6; L_6 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_5, NULL); if (!L_6) { goto IL_0065; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_7 = ___context6; NullCheck(L_7); String_t* L_8; L_8 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_7, NULL); NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_0065; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = ___baseUri4; String_t* L_11 = ___baseUriStr5; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_12 = ___context6; NullCheck(L_12); String_t* L_13; L_13 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_12, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_14 = ___settings3; NullCheck(L_14); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_15; L_15 = XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010_inline(L_14, NULL); bool L_16; L_16 = XmlTextReaderImpl_UriEqual_m2246085111A7F67C5A6EC15914D339666930A294(__this, L_10, L_11, L_13, L_15, NULL); if (L_16) { goto IL_0065; } } { String_t* L_17 = ___baseUriStr5; NullCheck(L_17); int32_t L_18; L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL); if ((((int32_t)L_18) <= ((int32_t)0))) { goto IL_005c; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral7A597BBB5531C860DA6FB2829441767F611CCFCC, NULL); } IL_005c: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_19 = ___context6; NullCheck(L_19); String_t* L_20; L_20 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_19, NULL); ___baseUriStr5 = L_20; } IL_0065: { String_t* L_21 = ___baseUriStr5; __this->___reportedBaseUri_43 = L_21; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_21); bool L_22 = ___closeInput7; __this->___closeInput_34 = L_22; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_23 = (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)il2cpp_codegen_object_new(LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6_il2cpp_TypeInfo_var); NullCheck(L_23); LaterInitParam__ctor_m633EE8735226C0AFAB9774FBBA3A4C36A64C47F9(L_23, NULL); __this->___laterInitParam_4 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___laterInitParam_4), (void*)L_23); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_24 = __this->___laterInitParam_4; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_25 = ___stream0; NullCheck(L_24); L_24->___inputStream_1 = L_25; Il2CppCodeGenWriteBarrier((void**)(&L_24->___inputStream_1), (void*)L_25); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_26 = __this->___laterInitParam_4; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = ___bytes1; NullCheck(L_26); L_26->___inputBytes_2 = L_27; Il2CppCodeGenWriteBarrier((void**)(&L_26->___inputBytes_2), (void*)L_27); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_28 = __this->___laterInitParam_4; int32_t L_29 = ___byteCount2; NullCheck(L_28); L_28->___inputByteCount_3 = L_29; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_30 = __this->___laterInitParam_4; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_31 = ___baseUri4; NullCheck(L_30); L_30->___inputbaseUri_4 = L_31; Il2CppCodeGenWriteBarrier((void**)(&L_30->___inputbaseUri_4), (void*)L_31); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_32 = __this->___laterInitParam_4; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_33 = ___context6; NullCheck(L_32); L_32->___inputContext_7 = L_33; Il2CppCodeGenWriteBarrier((void**)(&L_32->___inputContext_7), (void*)L_33); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_34 = __this->___laterInitParam_4; NullCheck(L_34); L_34->___initType_9 = 1; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_35 = ___settings3; NullCheck(L_35); bool L_36; L_36 = XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5_inline(L_35, NULL); if (L_36) { goto IL_00da; } } { XmlTextReaderImpl_FinishInitStream_m58313BD0609079DC0F8156990F55749D0E35F440(__this, NULL); return; } IL_00da: { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_37 = __this->___laterInitParam_4; NullCheck(L_37); L_37->___useAsync_0 = (bool)1; return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishInitStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInitStream_m58313BD0609079DC0F8156990F55749D0E35F440 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL; { V_0 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_0 = __this->___laterInitParam_4; NullCheck(L_0); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_1 = L_0->___inputContext_7; if (!L_1) { goto IL_0020; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_2 = __this->___laterInitParam_4; NullCheck(L_2); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3 = L_2->___inputContext_7; NullCheck(L_3); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4; L_4 = XmlParserContext_get_Encoding_m70D0D1E92582C7F95EE6E9024771C44129B1AC52_inline(L_3, NULL); V_0 = L_4; } IL_0020: { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_5 = __this->___laterInitParam_4; NullCheck(L_5); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = L_5->___inputbaseUri_4; String_t* L_7 = __this->___reportedBaseUri_43; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_8 = __this->___laterInitParam_4; NullCheck(L_8); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_9 = L_8->___inputStream_1; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_10 = __this->___laterInitParam_4; NullCheck(L_10); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10->___inputBytes_2; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_12 = __this->___laterInitParam_4; NullCheck(L_12); int32_t L_13 = L_12->___inputByteCount_3; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14 = V_0; XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF(__this, L_6, L_7, L_9, L_11, L_13, L_14, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_16 = L_15->___encoding_3; __this->___reportedEncoding_44 = L_16; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_16); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_17 = __this->___laterInitParam_4; NullCheck(L_17); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_18 = L_17->___inputContext_7; if (!L_18) { goto IL_009a; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_19 = __this->___laterInitParam_4; NullCheck(L_19); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_20 = L_19->___inputContext_7; NullCheck(L_20); bool L_21; L_21 = XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B(L_20, NULL); if (!L_21) { goto IL_009a; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_22 = __this->___laterInitParam_4; NullCheck(L_22); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_23 = L_22->___inputContext_7; XmlTextReaderImpl_ProcessDtdFromParserContext_mC5462F0B3774A760B0F2D7419A97D289D002DD96(__this, L_23, NULL); } IL_009a: { __this->___laterInitParam_4 = (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___laterInitParam_4), (void*)(LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader,System.Xml.XmlReaderSettings,System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m285CC96B7C323DF9216D243E3353C9091CC5B288 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, String_t* ___baseUriStr2, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = ___settings1; NullCheck(L_0); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1; L_1 = XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010_inline(L_0, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = ___settings1; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3 = ___context3; XmlTextReaderImpl__ctor_mCBF9A4F27E425C86BCFCF7D47C9731EF2DAAA31F(__this, L_1, L_2, L_3, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_4 = ___context3; if (!L_4) { goto IL_0025; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_5 = ___context3; NullCheck(L_5); String_t* L_6; L_6 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_5, NULL); if (!L_6) { goto IL_0025; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_7 = ___context3; NullCheck(L_7); String_t* L_8; L_8 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_7, NULL); ___baseUriStr2 = L_8; } IL_0025: { String_t* L_9 = ___baseUriStr2; __this->___reportedBaseUri_43 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_9); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_10 = ___settings1; NullCheck(L_10); bool L_11; L_11 = XmlReaderSettings_get_CloseInput_m59A87285F3D07FC87B95FDA27AB1462D1318342E_inline(L_10, NULL); __this->___closeInput_34 = L_11; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_12 = (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)il2cpp_codegen_object_new(LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6_il2cpp_TypeInfo_var); NullCheck(L_12); LaterInitParam__ctor_m633EE8735226C0AFAB9774FBBA3A4C36A64C47F9(L_12, NULL); __this->___laterInitParam_4 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___laterInitParam_4), (void*)L_12); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_13 = __this->___laterInitParam_4; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_14 = ___input0; NullCheck(L_13); L_13->___inputTextReader_8 = L_14; Il2CppCodeGenWriteBarrier((void**)(&L_13->___inputTextReader_8), (void*)L_14); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_15 = __this->___laterInitParam_4; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_16 = ___context3; NullCheck(L_15); L_15->___inputContext_7 = L_16; Il2CppCodeGenWriteBarrier((void**)(&L_15->___inputContext_7), (void*)L_16); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_17 = __this->___laterInitParam_4; NullCheck(L_17); L_17->___initType_9 = 2; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_18 = ___settings1; NullCheck(L_18); bool L_19; L_19 = XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5_inline(L_18, NULL); if (L_19) { goto IL_0077; } } { XmlTextReaderImpl_FinishInitTextReader_m544C70043AF483368219F53C5439201380E7E867(__this, NULL); return; } IL_0077: { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_20 = __this->___laterInitParam_4; NullCheck(L_20); L_20->___useAsync_0 = (bool)1; return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishInitTextReader() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInitTextReader_m544C70043AF483368219F53C5439201380E7E867 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___reportedBaseUri_43; LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_1 = __this->___laterInitParam_4; NullCheck(L_1); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_2 = L_1->___inputTextReader_8; XmlTextReaderImpl_InitTextReaderInput_mD59812F5A78B70F10C81F8248069530D54289952(__this, L_0, L_2, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4 = L_3->___encoding_3; __this->___reportedEncoding_44 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_4); LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_5 = __this->___laterInitParam_4; NullCheck(L_5); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_6 = L_5->___inputContext_7; if (!L_6) { goto IL_0058; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_7 = __this->___laterInitParam_4; NullCheck(L_7); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = L_7->___inputContext_7; NullCheck(L_8); bool L_9; L_9 = XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B(L_8, NULL); if (!L_9) { goto IL_0058; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_10 = __this->___laterInitParam_4; NullCheck(L_10); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_11 = L_10->___inputContext_7; XmlTextReaderImpl_ProcessDtdFromParserContext_mC5462F0B3774A760B0F2D7419A97D289D002DD96(__this, L_11, NULL); } IL_0058: { __this->___laterInitParam_4 = (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___laterInitParam_4), (void*)(LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlParserContext,System.Xml.XmlReaderSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mF4EF30AEC079F16F625DA59E0EF65F4726C222D4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___xmlFragment0, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context1, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings2, 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; } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = ___settings2; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_1 = ___context1; XmlTextReaderImpl__ctor_mCBF9A4F27E425C86BCFCF7D47C9731EF2DAAA31F(__this, (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL, L_0, L_1, NULL); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3; L_3 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); String_t* L_4 = ___xmlFragment0; XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(__this, L_2, L_3, L_4, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); String_t* L_6 = L_5->___baseUriStr_13; __this->___reportedBaseUri_43 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_6); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = L_7->___encoding_3; __this->___reportedEncoding_44 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_8); return; } } // System.Xml.XmlReaderSettings System.Xml.XmlTextReaderImpl::get_Settings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlTextReaderImpl_get_Settings_m6E88ADB4338436F66913D25DDC955CD8A165EC3E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* V_0 = NULL; int32_t V_1 = 0; { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); NullCheck(L_0); XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_0, NULL); V_0 = L_0; bool L_1 = __this->___nameTableFromSettings_21; if (!L_1) { goto IL_001a; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = V_0; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3 = __this->___nameTable_20; NullCheck(L_2); XmlReaderSettings_set_NameTable_m5FE079006C8F4D4FF3924D1B976C335C17058900(L_2, L_3, NULL); } IL_001a: { int32_t L_4 = __this->___fragmentType_46; V_1 = L_4; int32_t L_5 = V_1; if (!L_5) { goto IL_002d; } } { int32_t L_6 = V_1; if ((((int32_t)L_6) == ((int32_t)1))) { goto IL_0036; } } { int32_t L_7 = V_1; if ((((int32_t)L_7) == ((int32_t)((int32_t)9)))) { goto IL_003f; } } IL_002d: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_8 = V_0; NullCheck(L_8); XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76(L_8, 0, NULL); goto IL_0046; } IL_0036: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_9 = V_0; NullCheck(L_9); XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76(L_9, 1, NULL); goto IL_0046; } IL_003f: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_10 = V_0; NullCheck(L_10); XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76(L_10, 2, NULL); } IL_0046: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_11 = V_0; bool L_12 = __this->___checkCharacters_31; NullCheck(L_11); XmlReaderSettings_set_CheckCharacters_m16E3594CB4D8977197AEC7CAE390D688C8E23481(L_11, L_12, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_13 = V_0; int32_t L_14 = __this->___lineNumberOffset_32; NullCheck(L_13); XmlReaderSettings_set_LineNumberOffset_m2D65499EE921190F3E4AFEF8910A4320F446132A(L_13, L_14, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_15 = V_0; int32_t L_16 = __this->___linePositionOffset_33; NullCheck(L_15); XmlReaderSettings_set_LinePositionOffset_m9421A24A7DF15D954B1301E8E2B6FD1FB27C084A(L_15, L_16, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_17 = V_0; int32_t L_18 = __this->___whitespaceHandling_26; NullCheck(L_17); XmlReaderSettings_set_IgnoreWhitespace_m4BD0B66D712AF9636F562222077CB830E887FF60(L_17, (bool)((((int32_t)L_18) == ((int32_t)1))? 1 : 0), NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_19 = V_0; bool L_20 = __this->___ignorePIs_29; NullCheck(L_19); XmlReaderSettings_set_IgnoreProcessingInstructions_m965368E00B6CD619916BE73B03ACD3AAA5BE708C(L_19, L_20, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_21 = V_0; bool L_22 = __this->___ignoreComments_30; NullCheck(L_21); XmlReaderSettings_set_IgnoreComments_mA62566F443A53E7FECC98C0D317F47988559DCB4(L_21, L_22, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_23 = V_0; int32_t L_24 = __this->___dtdProcessing_27; NullCheck(L_23); XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043(L_23, L_24, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_25 = V_0; int64_t L_26 = __this->___maxCharactersInDocument_35; NullCheck(L_25); XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054(L_25, L_26, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_27 = V_0; int64_t L_28 = __this->___maxCharactersFromEntities_36; NullCheck(L_27); XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E(L_27, L_28, NULL); bool L_29; L_29 = XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB(NULL); if (L_29) { goto IL_00c8; } } { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_30 = V_0; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_31 = __this->___xmlResolver_22; NullCheck(L_30); XmlReaderSettings_set_XmlResolver_m44B84031BAC224C07AFD233C3DF9A6383216D883(L_30, L_31, NULL); } IL_00c8: { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_32 = V_0; NullCheck(L_32); XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline(L_32, (bool)1, NULL); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_33 = V_0; return L_33; } } // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_NodeType_m5A51C9A8C93DFD0418B6419585542F30234BCCAE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; return L_1; } } // System.String System.Xml.XmlTextReaderImpl::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_Name_m48B55236B711A4DEBBC72FF61F84341F7A6DAABF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___nameTable_20; NullCheck(L_0); String_t* L_2; L_2 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_0, L_1, NULL); return L_2; } } // System.String System.Xml.XmlTextReaderImpl::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_LocalName_m677F76B180DB6951629BD461095B102686639042 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); String_t* L_1 = L_0->___localName_2; return L_1; } } // System.String System.Xml.XmlTextReaderImpl::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_NamespaceURI_mBE4FB0CE84C27F4C5700C90EDACA12103BEBB7B5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); String_t* L_1 = L_0->___ns_4; return L_1; } } // System.String System.Xml.XmlTextReaderImpl::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_Prefix_mB29627D05F400FEAF9A4C804A060D00E6711FAB4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); String_t* L_1 = L_0->___prefix_3; return L_1; } } // System.String System.Xml.XmlTextReaderImpl::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_Value_mD430CAE5995F453BD23DED7C0D85574104C795B7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___parsingFunction_7; if ((((int32_t)L_0) < ((int32_t)((int32_t)21)))) { goto IL_002e; } } { int32_t L_1 = __this->___parsingFunction_7; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)21))))) { goto IL_0028; } } { XmlTextReaderImpl_FinishPartialValue_m1A6AB6EC08D3B450E847DCBA6AE4E4311DF2F045(__this, NULL); int32_t L_2 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_2; goto IL_002e; } IL_0028: { XmlTextReaderImpl_FinishOtherValueIterator_mF20DB1AE74812FFDF3A6C6859213BD945E182555(__this, NULL); } IL_002e: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = __this->___curNode_11; NullCheck(L_3); String_t* L_4; L_4 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_3, NULL); return L_4; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_Depth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_Depth_m3C99F01FC7D80F381FE827354E22B5F0E2E2940C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___depth_13; return L_1; } } // System.String System.Xml.XmlTextReaderImpl::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_BaseURI_m4AF6E44197F4C50CBD6ACE67063D7D1F8BF7C58C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___reportedBaseUri_43; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsEmptyElement_m23BB1B1E349DF2B95EDB1FA368D6A2B093396D9C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); bool L_1; L_1 = NodeData_get_IsEmptyElement_mD85FA732DA497F1A5F2778650D5405F5D67DF527(L_0, NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsDefault_mC172D03B5EF0F6C1FE307C6772C7C906536C1CFC (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); bool L_1; L_1 = NodeData_get_IsDefaultAttribute_mAEDE8A0C6EB15C9087EB963AA29E2E6C3E2AC81C(L_0, NULL); return L_1; } } // System.Char System.Xml.XmlTextReaderImpl::get_QuoteChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XmlTextReaderImpl_get_QuoteChar_m4C0A80D83CCF2127B093A91B1CB42FD4A8DE3D84 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; if ((((int32_t)L_1) == ((int32_t)2))) { goto IL_0011; } } { return ((int32_t)34); } IL_0011: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; NullCheck(L_2); Il2CppChar L_3 = L_2->___quoteChar_12; return L_3; } } // System.Xml.XmlSpace System.Xml.XmlTextReaderImpl::get_XmlSpace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_XmlSpace_m65448CD7DE542C8BC5CAA771FF57A59F6A9039EB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_0 = __this->___xmlContext_40; NullCheck(L_0); int32_t L_1 = L_0->___xmlSpace_0; return L_1; } } // System.String System.Xml.XmlTextReaderImpl::get_XmlLang() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_get_XmlLang_m6484DE4FBAA2543C936CD4C9DB556AE6BE3C72DE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_0 = __this->___xmlContext_40; NullCheck(L_0); String_t* L_1 = L_0->___xmlLang_1; return L_1; } } // System.Xml.ReadState System.Xml.XmlTextReaderImpl::get_ReadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_ReadState_m6115650FEE9344E122B5DCFAF9B42453655C9642 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___readState_66; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_EOF() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_EOF_m3F84C179FD19723A464C36B6577E509C82653762 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___parsingFunction_7; return (bool)((((int32_t)L_0) == ((int32_t)((int32_t)11)))? 1 : 0); } } // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlTextReaderImpl_get_NameTable_mB7A4A6CDE4B7ADE58A2DFA68903FD19DE4855C9F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_20; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_CanResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_CanResolveEntity_m830477568F1E0AD32D56F6B19E3AC75DCDB6BD21 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_AttributeCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_AttributeCount_m4C3545F880C0305C0D898D85B24E9A1D22A478EF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___attrCount_14; return L_0; } } // System.String System.Xml.XmlTextReaderImpl::GetAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_GetAttribute_m2105D6EFFDE0634EAC52F10A14C16C9C1FB25FB9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ___name0; NullCheck(L_0); int32_t L_1; L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)58), NULL); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_0015; } } { String_t* L_2 = ___name0; int32_t L_3; L_3 = XmlTextReaderImpl_GetIndexOfAttributeWithoutPrefix_mE28A59CD28367148597BB65AB4C1EBA22DBE8F9A(__this, L_2, NULL); V_0 = L_3; goto IL_001d; } IL_0015: { String_t* L_4 = ___name0; int32_t L_5; L_5 = XmlTextReaderImpl_GetIndexOfAttributeWithPrefix_mEF35AFBF456D1F9EF89A3E72121686EF60C03C68(__this, L_4, NULL); V_0 = L_5; } IL_001d: { int32_t L_6 = V_0; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0023; } } { return (String_t*)NULL; } IL_0023: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_7 = __this->___nodes_10; int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = (L_7)->GetAt(static_cast(L_9)); NullCheck(L_10); String_t* L_11; L_11 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_10, NULL); return L_11; } } // System.String System.Xml.XmlTextReaderImpl::GetAttribute(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_GetAttribute_m3C329BDBEB0BF86DADED3CB767D2850FB8238383 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* G_B3_0 = NULL; { String_t* L_0 = ___namespaceURI1; if (!L_0) { goto IL_0011; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___nameTable_20; String_t* L_2 = ___namespaceURI1; NullCheck(L_1); String_t* L_3; L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_1, L_2); G_B3_0 = L_3; goto IL_0016; } IL_0011: { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B3_0 = L_4; } IL_0016: { ___namespaceURI1 = G_B3_0; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = __this->___nameTable_20; String_t* L_6 = ___localName0; NullCheck(L_5); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_5, L_6); ___localName0 = L_7; int32_t L_8 = __this->___index_12; V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1)); goto IL_006d; } IL_0031: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_9 = __this->___nodes_10; int32_t L_10 = V_0; NullCheck(L_9); int32_t L_11 = L_10; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = (L_9)->GetAt(static_cast(L_11)); NullCheck(L_12); String_t* L_13 = L_12->___localName_2; String_t* L_14 = ___localName0; bool L_15; L_15 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_13, L_14, NULL); if (!L_15) { goto IL_0069; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_16 = __this->___nodes_10; int32_t L_17 = V_0; NullCheck(L_16); int32_t L_18 = L_17; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = (L_16)->GetAt(static_cast(L_18)); NullCheck(L_19); String_t* L_20 = L_19->___ns_4; String_t* L_21 = ___namespaceURI1; bool L_22; L_22 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_20, L_21, NULL); if (!L_22) { goto IL_0069; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_23 = __this->___nodes_10; int32_t L_24 = V_0; NullCheck(L_23); int32_t L_25 = L_24; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_26 = (L_23)->GetAt(static_cast(L_25)); NullCheck(L_26); String_t* L_27; L_27 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_26, NULL); return L_27; } IL_0069: { int32_t L_28 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_28, 1)); } IL_006d: { int32_t L_29 = V_0; int32_t L_30 = __this->___index_12; int32_t L_31 = __this->___attrCount_14; if ((((int32_t)L_29) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_30, L_31)), 1))))) { goto IL_0031; } } { return (String_t*)NULL; } } // System.String System.Xml.XmlTextReaderImpl::GetAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_GetAttribute_m1F3DD4202A6159563B6AA1431820E1F1DD186455 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___i0, const RuntimeMethod* method) { { int32_t L_0 = ___i0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___i0; int32_t L_2 = __this->___attrCount_14; if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0018; } } IL_000d: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_GetAttribute_m1F3DD4202A6159563B6AA1431820E1F1DD186455_RuntimeMethod_var))); } IL_0018: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_4 = __this->___nodes_10; int32_t L_5 = __this->___index_12; int32_t L_6 = ___i0; NullCheck(L_4); int32_t L_7 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_5, L_6)), 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = (L_4)->GetAt(static_cast(L_7)); NullCheck(L_8); String_t* L_9; L_9 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_8, NULL); return L_9; } } // System.Boolean System.Xml.XmlTextReaderImpl::MoveToAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_MoveToAttribute_m31E2D477A852928D8BA84C43DF9A1603A6C8BF6A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ___name0; NullCheck(L_0); int32_t L_1; L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)58), NULL); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_0015; } } { String_t* L_2 = ___name0; int32_t L_3; L_3 = XmlTextReaderImpl_GetIndexOfAttributeWithoutPrefix_mE28A59CD28367148597BB65AB4C1EBA22DBE8F9A(__this, L_2, NULL); V_0 = L_3; goto IL_001d; } IL_0015: { String_t* L_4 = ___name0; int32_t L_5; L_5 = XmlTextReaderImpl_GetIndexOfAttributeWithPrefix_mEF35AFBF456D1F9EF89A3E72121686EF60C03C68(__this, L_4, NULL); V_0 = L_5; } IL_001d: { int32_t L_6 = V_0; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_004f; } } { bool L_7; L_7 = XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD(__this, NULL); if (!L_7) { goto IL_002f; } } { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); } IL_002f: { int32_t L_8 = V_0; int32_t L_9 = __this->___index_12; __this->___curAttrIndex_13 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_8, L_9)), 1)); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_10 = __this->___nodes_10; int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = L_11; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = (L_10)->GetAt(static_cast(L_12)); __this->___curNode_11 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_13); return (bool)1; } IL_004f: { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::MoveToAttribute(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_MoveToAttribute_mF39924084B62FBC5C5BBE0768E69CAF00F031DAD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___i0, const RuntimeMethod* method) { { int32_t L_0 = ___i0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___i0; int32_t L_2 = __this->___attrCount_14; if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0018; } } IL_000d: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_MoveToAttribute_mF39924084B62FBC5C5BBE0768E69CAF00F031DAD_RuntimeMethod_var))); } IL_0018: { bool L_4; L_4 = XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD(__this, NULL); if (!L_4) { goto IL_0026; } } { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); } IL_0026: { int32_t L_5 = ___i0; __this->___curAttrIndex_13 = L_5; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_6 = __this->___nodes_10; int32_t L_7 = __this->___index_12; int32_t L_8 = __this->___curAttrIndex_13; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_7, 1)), L_8)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = (L_6)->GetAt(static_cast(L_9)); __this->___curNode_11 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_10); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::MoveToFirstAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_MoveToFirstAttribute_m8A6C672767A079947F1242E1371D300B4E65C77B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___attrCount_14; if (L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { bool L_1; L_1 = XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD(__this, NULL); if (!L_1) { goto IL_0018; } } { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); } IL_0018: { __this->___curAttrIndex_13 = 0; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_2 = __this->___nodes_10; int32_t L_3 = __this->___index_12; NullCheck(L_2); int32_t L_4 = ((int32_t)il2cpp_codegen_add(L_3, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = (L_2)->GetAt(static_cast(L_4)); __this->___curNode_11 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_5); return (bool)1; } } // System.Boolean System.Xml.XmlTextReaderImpl::MoveToNextAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_MoveToNextAttribute_m8564DFB9ABC50DE127BECF4372B07AC7F0870E07 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->___curAttrIndex_13; int32_t L_1 = __this->___attrCount_14; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_0, 1))) >= ((int32_t)L_1))) { goto IL_0047; } } { bool L_2; L_2 = XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD(__this, NULL); if (!L_2) { goto IL_001e; } } { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); } IL_001e: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_3 = __this->___nodes_10; int32_t L_4 = __this->___index_12; int32_t L_5 = __this->___curAttrIndex_13; V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1)); int32_t L_6 = V_0; __this->___curAttrIndex_13 = L_6; int32_t L_7 = V_0; NullCheck(L_3); int32_t L_8 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_4, 1)), L_7)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_9 = (L_3)->GetAt(static_cast(L_8)); __this->___curNode_11 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_9); return (bool)1; } IL_0047: { return (bool)0; } } // System.Boolean System.Xml.XmlTextReaderImpl::MoveToElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_MoveToElement_mB1A4049958D0EFCBC05DDF2832F27303CFD7051B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0; L_0 = XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD(__this, NULL); if (!L_0) { goto IL_0010; } } { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); goto IL_0020; } IL_0010: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = __this->___curNode_11; NullCheck(L_1); int32_t L_2 = L_1->___type_1; if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_0020; } } { return (bool)0; } IL_0020: { __this->___curAttrIndex_13 = (-1); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_3 = __this->___nodes_10; int32_t L_4 = __this->___index_12; NullCheck(L_3); int32_t L_5 = L_4; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_6 = (L_3)->GetAt(static_cast(L_5)); __this->___curNode_11 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_6); return (bool)1; } } // System.Void System.Xml.XmlTextReaderImpl::FinishInit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishInit_mA8DC3168268A98E80115D39DB4BC3EFA2C9116B6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_0 = __this->___laterInitParam_4; NullCheck(L_0); int32_t L_1 = L_0->___initType_9; V_0 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_001f; } case 1: { goto IL_0026; } case 2: { goto IL_002d; } } } { return; } IL_001f: { XmlTextReaderImpl_FinishInitUriString_m9D1EAAEBEB54E573AA246ECB98CE152B24D576FA(__this, NULL); return; } IL_0026: { XmlTextReaderImpl_FinishInitStream_m58313BD0609079DC0F8156990F55749D0E35F440(__this, NULL); return; } IL_002d: { XmlTextReaderImpl_FinishInitTextReader_m544C70043AF483368219F53C5439201380E7E867(__this, NULL); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::Read() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_Read_m2287D542E2053BBA82F0CDC325627DE3A480EDAA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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*)&_stringLiteralCA05288B6212EA20126730A5B780745B08DD3D36); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B13_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B12_0 = NULL; int32_t G_B14_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B14_1 = NULL; { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_0 = __this->___laterInitParam_4; if (!L_0) { goto IL_000e; } } { XmlTextReaderImpl_FinishInit_mA8DC3168268A98E80115D39DB4BC3EFA2C9116B6(__this, NULL); } IL_000e: { int32_t L_1 = __this->___parsingFunction_7; V_0 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0085; } case 1: { goto IL_02e7; } case 2: { goto IL_0093; } case 3: { goto IL_009b; } case 4: { goto IL_00b3; } case 5: { goto IL_008c; } case 6: { goto IL_0128; } case 7: { goto IL_0160; } case 8: { goto IL_0177; } case 9: { goto IL_00f8; } case 10: { goto IL_02e5; } case 11: { goto IL_02e5; } case 12: { goto IL_02e5; } case 13: { goto IL_01b3; } case 14: { goto IL_02be; } case 15: { goto IL_02c6; } case 16: { goto IL_01c7; } case 17: { goto IL_01db; } case 18: { goto IL_0226; } case 19: { goto IL_02cd; } case 20: { goto IL_02dd; } case 21: { goto IL_02f4; } case 22: { goto IL_02a0; } case 23: { goto IL_02ff; } case 24: { goto IL_030a; } case 25: { goto IL_0315; } } } { goto IL_000e; } IL_0085: { bool L_3; L_3 = XmlTextReaderImpl_ParseElementContent_m92E1275AE62507C98DCE8F933E591F7FA3C42E60(__this, NULL); return L_3; } IL_008c: { bool L_4; L_4 = XmlTextReaderImpl_ParseDocumentContent_mF4332115464F64242A412C79F3B0D159E7B4517F(__this, NULL); return L_4; } IL_0093: { XmlTextReaderImpl_OpenUrl_m0BF6C0850B8AD63E0DEDA911664D51C59A8FD480(__this, NULL); goto IL_00b3; } IL_009b: { __this->___readState_66 = 1; int32_t L_5 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_5; goto IL_000e; } IL_00b3: { __this->___readState_66 = 1; int32_t L_6 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_6; bool L_7; L_7 = XmlTextReaderImpl_ParseXmlDeclaration_mE57790EE79B349C9AA99472BA1B5DE58604660EA(__this, (bool)0, NULL); if (!L_7) { goto IL_00e2; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_9 = L_8->___encoding_3; __this->___reportedEncoding_44 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_9); return (bool)1; } IL_00e2: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_10 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_11 = L_10->___encoding_3; __this->___reportedEncoding_44 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_11); goto IL_000e; } IL_00f8: { XmlTextReaderImpl_ResetAttributes_m2E88D9765B460D463079DC959DA71B940FBE014C(__this, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_12 = __this->___nodes_10; int32_t L_13 = __this->___index_12; NullCheck(L_12); int32_t L_14 = L_13; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = (L_12)->GetAt(static_cast(L_14)); __this->___curNode_11 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_15); int32_t L_16 = __this->___index_12; G_B12_0 = __this; if (!L_16) { G_B13_0 = __this; goto IL_011d; } } { G_B14_0 = 0; G_B14_1 = G_B12_0; goto IL_011e; } IL_011d: { G_B14_0 = 5; G_B14_1 = G_B13_0; } IL_011e: { NullCheck(G_B14_1); G_B14_1->___parsingFunction_7 = G_B14_0; goto IL_000e; } IL_0128: { XmlTextReaderImpl_ResetAttributes_m2E88D9765B460D463079DC959DA71B940FBE014C(__this, NULL); int32_t L_17 = __this->___index_12; __this->___index_12 = ((int32_t)il2cpp_codegen_add(L_17, 1)); int32_t L_18 = __this->___index_12; int32_t L_19 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20; L_20 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, L_18, L_19, NULL); __this->___curNode_11 = L_20; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_20); __this->___parsingFunction_7 = 0; goto IL_000e; } IL_0160: { XmlTextReaderImpl_PopElementContext_m815F6BA5B634F8A49E91EA0246AAA21310305612(__this, NULL); int32_t L_21 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_21; goto IL_000e; } IL_0177: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_22 = __this->___nodes_10; int32_t L_23 = __this->___index_12; NullCheck(L_22); int32_t L_24 = L_23; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_25 = (L_22)->GetAt(static_cast(L_24)); __this->___curNode_11 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_25); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_26 = __this->___curNode_11; NullCheck(L_26); NodeData_set_IsEmptyElement_mD9AA39D1F91A00BEDBED1204654917447AF2D57D_inline(L_26, (bool)0, NULL); XmlTextReaderImpl_ResetAttributes_m2E88D9765B460D463079DC959DA71B940FBE014C(__this, NULL); XmlTextReaderImpl_PopElementContext_m815F6BA5B634F8A49E91EA0246AAA21310305612(__this, NULL); int32_t L_27 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_27; goto IL_000e; } IL_01b3: { int32_t L_28 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_28; XmlTextReaderImpl_ParseEntityReference_m88F7B5D5FA448C8728068D1440DC9849BD1F0815(__this, NULL); return (bool)1; } IL_01c7: { XmlTextReaderImpl_SetupEndEntityNodeInContent_m5DF2EE9E86D586C0DD11D845EEA3BCC0ACFB47BE(__this, NULL); int32_t L_29 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_29; return (bool)1; } IL_01db: { int32_t L_30 = __this->___index_12; int32_t L_31 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_32; L_32 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, L_30, L_31, NULL); __this->___curNode_11 = L_32; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_32); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_33 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_34 = L_33->___encoding_3; __this->___reportedEncoding_44 = L_34; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_34); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_35 = (&__this->___ps_6); String_t* L_36 = L_35->___baseUriStr_13; __this->___reportedBaseUri_43 = L_36; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_36); int32_t L_37 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_37; goto IL_000e; } IL_0226: { int32_t L_38 = __this->___index_12; int32_t L_39 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_40; L_40 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, L_38, L_39, NULL); __this->___curNode_11 = L_40; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_40); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_41 = __this->___curNode_11; String_t* L_42 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_41); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_41, 3, L_42, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_43 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_44 = (&__this->___ps_6); int32_t L_45 = L_44->___lineNo_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_46 = (&__this->___ps_6); int32_t L_47; L_47 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_46, NULL); NullCheck(L_43); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_43, L_45, L_47, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_48 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_49 = L_48->___encoding_3; __this->___reportedEncoding_44 = L_49; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_49); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); String_t* L_51 = L_50->___baseUriStr_13; __this->___reportedBaseUri_43 = L_51; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_51); int32_t L_52 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_52; return (bool)1; } IL_02a0: { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_53 = __this->___nodes_10; int32_t L_54 = __this->___index_12; NullCheck(L_53); int32_t L_55 = L_54; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_56 = (L_53)->GetAt(static_cast(L_55)); __this->___curNode_11 = L_56; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_56); goto IL_000e; } IL_02be: { XmlTextReaderImpl_FinishIncrementalRead_mE29D16A2012D05CC914D1E1E7A5E4C4F70D87FCB(__this, NULL); return (bool)1; } IL_02c6: { bool L_57; L_57 = XmlTextReaderImpl_ParseFragmentAttribute_m7F13ECEA0620B822BE43B027B9AFA45864D2E10F(__this, NULL); return L_57; } IL_02cd: { XmlTextReaderImpl_ParseXmlDeclarationFragment_m78450AE9989B2043AD0068D6200CAD504B12D223(__this, NULL); __this->___parsingFunction_7 = ((int32_t)20); return (bool)1; } IL_02dd: { XmlTextReaderImpl_OnEof_m8F5DFF89DE3251F9CEFA219E6A1AB8D268191B36(__this, NULL); return (bool)0; } IL_02e5: { return (bool)0; } IL_02e7: { XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E(__this, _stringLiteralCA05288B6212EA20126730A5B780745B08DD3D36, NULL); return (bool)0; } IL_02f4: { XmlTextReaderImpl_SkipPartialTextValue_mB4F56CA02982F525CBE1ABBB78D16F151DEC665A(__this, NULL); goto IL_000e; } IL_02ff: { XmlTextReaderImpl_FinishReadValueChunk_mA0FC504DC95E81D070F51567BEFEAAA7A68FB187(__this, NULL); goto IL_000e; } IL_030a: { XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3(__this, NULL); goto IL_000e; } IL_0315: { XmlTextReaderImpl_FinishReadElementContentAsBinary_mD248232D6E06181EB68309925A5A2FA290A190BA(__this, NULL); goto IL_000e; } } // System.Void System.Xml.XmlTextReaderImpl::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Close_mB9F2949D64DE798509FB0C4BFBA3E2A7A1D91BA3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___closeInput_34; XmlTextReaderImpl_Close_m00A023B8815072F34509D2937F878404C966F63D(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Skip() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Skip_m5E3FA78F020CDBDE15AA135F9498B99B89FE5879 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = __this->___readState_66; if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_000a; } } { return; } IL_000a: { bool L_1; L_1 = XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD(__this, NULL); if (!L_1) { goto IL_002d; } } { XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632(__this, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_2 = __this->___nodes_10; int32_t L_3 = __this->___index_12; NullCheck(L_2); int32_t L_4 = L_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = (L_2)->GetAt(static_cast(L_4)); __this->___curNode_11 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_5); goto IL_007e; } IL_002d: { int32_t L_6 = __this->___parsingFunction_7; V_0 = L_6; int32_t L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)14)))) { goto IL_0058; } } { int32_t L_8 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)21)))) { case 0: { goto IL_0060; } case 1: { goto IL_007e; } case 2: { goto IL_0068; } case 3: { goto IL_0070; } case 4: { goto IL_0078; } } } { goto IL_007e; } IL_0058: { XmlTextReaderImpl_FinishIncrementalRead_mE29D16A2012D05CC914D1E1E7A5E4C4F70D87FCB(__this, NULL); goto IL_007e; } IL_0060: { XmlTextReaderImpl_SkipPartialTextValue_mB4F56CA02982F525CBE1ABBB78D16F151DEC665A(__this, NULL); goto IL_007e; } IL_0068: { XmlTextReaderImpl_FinishReadValueChunk_mA0FC504DC95E81D070F51567BEFEAAA7A68FB187(__this, NULL); goto IL_007e; } IL_0070: { XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3(__this, NULL); goto IL_007e; } IL_0078: { XmlTextReaderImpl_FinishReadElementContentAsBinary_mD248232D6E06181EB68309925A5A2FA290A190BA(__this, NULL); } IL_007e: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_9 = __this->___curNode_11; NullCheck(L_9); int32_t L_10 = L_9->___type_1; V_2 = L_10; int32_t L_11 = V_2; if ((((int32_t)L_11) == ((int32_t)1))) { goto IL_0094; } } { int32_t L_12 = V_2; if ((((int32_t)L_12) == ((int32_t)2))) { goto IL_00ce; } } { goto IL_00dc; } IL_0094: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = __this->___curNode_11; NullCheck(L_13); bool L_14; L_14 = NodeData_get_IsEmptyElement_mD85FA732DA497F1A5F2778650D5405F5D67DF527(L_13, NULL); if (L_14) { goto IL_00dc; } } { int32_t L_15 = __this->___index_12; V_1 = L_15; __this->___parsingMode_65 = 2; } IL_00af: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = __this->___outerReader_75; NullCheck(L_16); bool L_17; L_17 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_16); if (!L_17) { goto IL_00c5; } } { int32_t L_18 = __this->___index_12; int32_t L_19 = V_1; if ((((int32_t)L_18) > ((int32_t)L_19))) { goto IL_00af; } } IL_00c5: { __this->___parsingMode_65 = 0; goto IL_00dc; } IL_00ce: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = __this->___outerReader_75; NullCheck(L_20); bool L_21; L_21 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_20); goto IL_0094; } IL_00dc: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___outerReader_75; NullCheck(L_22); bool L_23; L_23 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_22); return; } } // System.String System.Xml.XmlTextReaderImpl::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_LookupNamespace_m97D025637F5762068EB0FC42095AC90749C47F54 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___prefix0, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_25; if (L_0) { goto IL_000a; } } { return (String_t*)NULL; } IL_000a: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1 = __this->___namespaceManager_38; String_t* L_2 = ___prefix0; NullCheck(L_1); String_t* L_3; L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_1, L_2); return L_3; } } // System.Boolean System.Xml.XmlTextReaderImpl::ReadAttributeValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ReadAttributeValue_mB3D66A01E29B4A1E86837F23D3ADA7AC99831202 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; { int32_t L_0 = __this->___parsingFunction_7; if ((((int32_t)L_0) == ((int32_t)((int32_t)22)))) { goto IL_0149; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = __this->___curNode_11; NullCheck(L_1); int32_t L_2 = L_1->___type_1; if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_001d; } } { return (bool)0; } IL_001d: { int32_t L_3 = __this->___readState_66; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_002f; } } { int32_t L_4 = __this->___curAttrIndex_13; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0031; } } IL_002f: { return (bool)0; } IL_0031: { int32_t L_5 = __this->___parsingFunction_7; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)23))))) { goto IL_0041; } } { XmlTextReaderImpl_FinishReadValueChunk_mA0FC504DC95E81D070F51567BEFEAAA7A68FB187(__this, NULL); } IL_0041: { int32_t L_6 = __this->___parsingFunction_7; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)24))))) { goto IL_0051; } } { XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3(__this, NULL); } IL_0051: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = __this->___curNode_11; NullCheck(L_7); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = L_7->___nextAttrValueChunk_17; if (!L_8) { goto IL_0067; } } { int32_t L_9 = __this->___entityHandling_28; if ((!(((uint32_t)L_9) == ((uint32_t)1)))) { goto IL_00d0; } } IL_0067: { int32_t L_10 = __this->___index_12; int32_t L_11 = __this->___attrCount_14; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = __this->___curNode_11; NullCheck(L_12); int32_t L_13 = L_12->___depth_13; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_14; L_14 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_10, L_11)), 1)), ((int32_t)il2cpp_codegen_add(L_13, 1)), NULL); V_0 = L_14; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = __this->___curNode_11; NullCheck(L_16); String_t* L_17; L_17 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_16, NULL); NullCheck(L_15); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_15, 3, L_17, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_18 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = __this->___curNode_11; NullCheck(L_19); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_20 = L_19->___lineInfo2_11; NullCheck(L_18); L_18->___lineInfo_10 = L_20; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_21 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_22 = __this->___curNode_11; NullCheck(L_22); int32_t L_23 = L_22->___depth_13; NullCheck(L_21); L_21->___depth_13 = ((int32_t)il2cpp_codegen_add(L_23, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_24 = V_0; __this->___curNode_11 = L_24; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_24); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_25 = V_0; NullCheck(L_25); L_25->___nextAttrValueChunk_17 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_25->___nextAttrValueChunk_17), (void*)(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL); goto IL_0122; } IL_00d0: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_26 = __this->___curNode_11; NullCheck(L_26); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_27 = L_26->___nextAttrValueChunk_17; __this->___curNode_11 = L_27; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_27); int32_t L_28 = __this->___index_12; int32_t L_29 = __this->___attrCount_14; int32_t L_30 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_31; L_31 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, L_29)), 1)), ((int32_t)il2cpp_codegen_add(L_30, 2)), NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_32 = __this->___nodes_10; int32_t L_33 = __this->___index_12; int32_t L_34 = __this->___attrCount_14; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_35 = __this->___curNode_11; NullCheck(L_32); ArrayElementTypeCheck (L_32, L_35); (L_32)->SetAt(static_cast(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_33, L_34)), 1))), (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)L_35); __this->___fullAttrCleanup_18 = (bool)1; } IL_0122: { int32_t L_36 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_36; __this->___parsingFunction_7 = ((int32_t)22); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_37 = (&__this->___ps_6); int32_t L_38 = L_37->___entityId_18; __this->___attributeValueBaseEntityId_55 = L_38; return (bool)1; } IL_0149: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_39 = (&__this->___ps_6); int32_t L_40 = L_39->___entityId_18; int32_t L_41 = __this->___attributeValueBaseEntityId_55; if ((!(((uint32_t)L_40) == ((uint32_t)L_41)))) { goto IL_019a; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_42 = __this->___curNode_11; NullCheck(L_42); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_43 = L_42->___nextAttrValueChunk_17; if (!L_43) { goto IL_0198; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_44 = __this->___curNode_11; NullCheck(L_44); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_45 = L_44->___nextAttrValueChunk_17; __this->___curNode_11 = L_45; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_45); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_46 = __this->___nodes_10; int32_t L_47 = __this->___index_12; int32_t L_48 = __this->___attrCount_14; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_49 = __this->___curNode_11; NullCheck(L_46); ArrayElementTypeCheck (L_46, L_49); (L_46)->SetAt(static_cast(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_48)), 1))), (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)L_49); return (bool)1; } IL_0198: { return (bool)0; } IL_019a: { bool L_50; L_50 = XmlTextReaderImpl_ParseAttributeValueChunk_mCE7E6C8D6F5D7D71C50A86E619E1678191ED184F(__this, NULL); return L_50; } } // System.Void System.Xml.XmlTextReaderImpl::ResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ResolveEntity_m01A84F03DB27E7C92857613DB9FE549C21F9307D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; if ((((int32_t)L_1) == ((int32_t)5))) { goto IL_001e; } } { String_t* L_2; L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_3); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ResolveEntity_m01A84F03DB27E7C92857613DB9FE549C21F9307D_RuntimeMethod_var))); } IL_001e: { int32_t L_4 = __this->___parsingFunction_7; if ((((int32_t)L_4) == ((int32_t)((int32_t)22)))) { goto IL_0035; } } { int32_t L_5 = __this->___parsingFunction_7; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)15))))) { goto IL_00b6; } } IL_0035: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_6 = __this->___curNode_11; NullCheck(L_6); String_t* L_7 = L_6->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = __this->___curNode_11; NullCheck(L_8); int32_t L_9; L_9 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_8, NULL); int32_t L_10; L_10 = XmlTextReaderImpl_HandleGeneralEntityReference_m7341FED921A6B308D70876B0F4C8A46FBB56E446(__this, L_7, (bool)1, (bool)1, L_9, NULL); V_0 = L_10; int32_t L_11 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_11, 3))) { case 0: { goto IL_0072; } case 1: { goto IL_00a6; } case 2: { goto IL_009a; } case 3: { goto IL_00a6; } case 4: { goto IL_0072; } } } { goto IL_00a6; } IL_0072: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); int32_t L_13 = L_12->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_14 = (&__this->___ps_6); int32_t L_15 = L_14->___charPos_1; if (((int32_t)il2cpp_codegen_subtract(L_13, L_15))) { goto IL_0164; } } { __this->___emptyEntityInAttributeResolved_56 = (bool)1; goto IL_0164; } IL_009a: { __this->___emptyEntityInAttributeResolved_56 = (bool)1; goto IL_0164; } IL_00a6: { String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_17 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_17); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72)), L_16, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ResolveEntity_m01A84F03DB27E7C92857613DB9FE549C21F9307D_RuntimeMethod_var))); } IL_00b6: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_18 = __this->___curNode_11; NullCheck(L_18); String_t* L_19 = L_18->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20 = __this->___curNode_11; NullCheck(L_20); int32_t L_21; L_21 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_20, NULL); int32_t L_22; L_22 = XmlTextReaderImpl_HandleGeneralEntityReference_m7341FED921A6B308D70876B0F4C8A46FBB56E446(__this, L_19, (bool)0, (bool)1, L_21, NULL); V_0 = L_22; int32_t L_23 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_23, 3))) { case 0: { goto IL_00f3; } case 1: { goto IL_0154; } case 2: { goto IL_013e; } case 3: { goto IL_0154; } case 4: { goto IL_00f3; } } } { goto IL_0154; } IL_00f3: { int32_t L_24 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_24; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); int32_t L_26 = L_25->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_27 = (&__this->___ps_6); int32_t L_28 = L_27->___charPos_1; if (((int32_t)il2cpp_codegen_subtract(L_26, L_28))) { goto IL_0134; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); RuntimeObject* L_30 = L_29->___entity_17; NullCheck(L_30); bool L_31; L_31 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsExternal() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_30); if (L_31) { goto IL_0134; } } { __this->___parsingFunction_7 = ((int32_t)18); goto IL_0164; } IL_0134: { __this->___parsingFunction_7 = ((int32_t)17); goto IL_0164; } IL_013e: { int32_t L_32 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_32; __this->___parsingFunction_7 = ((int32_t)18); goto IL_0164; } IL_0154: { String_t* L_33 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_34 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_34); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_34, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72)), L_33, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ResolveEntity_m01A84F03DB27E7C92857613DB9FE549C21F9307D_RuntimeMethod_var))); } IL_0164: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_35 = (&__this->___ps_6); L_35->___entityResolvedManually_20 = (bool)1; int32_t L_36 = __this->___index_12; __this->___index_12 = ((int32_t)il2cpp_codegen_add(L_36, 1)); return; } } // System.Void System.Xml.XmlTextReaderImpl::set_OuterReader(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___value0, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___value0; __this->___outerReader_75 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___outerReader_75), (void*)L_0); return; } } // System.Void System.Xml.XmlTextReaderImpl::MoveOffEntityReference() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_MoveOffEntityReference_mA1A8FFC9F91F041D85E01D350BB3824E6534A1B6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___outerReader_75; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)5)))) { goto IL_0035; } } { int32_t L_2 = __this->___parsingFunction_7; if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)17))))) { goto IL_0035; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___outerReader_75; NullCheck(L_3); bool L_4; L_4 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_3); if (L_4) { goto IL_0035; } } { String_t* L_5; L_5 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_6); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_6, L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_MoveOffEntityReference_mA1A8FFC9F91F041D85E01D350BB3824E6534A1B6_RuntimeMethod_var))); } IL_0035: { return; } } // System.String System.Xml.XmlTextReaderImpl::ReadString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ReadString_mB8DDD83C29EF9B7488CA0CACC8042EE05FE1AFB3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_MoveOffEntityReference_mA1A8FFC9F91F041D85E01D350BB3824E6534A1B6(__this, NULL); String_t* L_0; L_0 = XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE(__this, NULL); return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_CanReadValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_CanReadValueChunk_m98E7A7BA68D47C4C4B77F9E3975BC8E101E4D35C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Int32 System.Xml.XmlTextReaderImpl::ReadValueChunk(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, 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*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96065EF4DC93B53D7A1F952FADF4921C43506B4C); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B33_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B32_0 = NULL; int32_t G_B34_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B34_1 = NULL; { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); bool L_2; L_2 = XmlReader_HasValueInternal_mE4B923FA489B97DC6BC46F0746B8DDB3C0ACBF10(L_1, NULL); if (L_2) { goto IL_003b; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = L_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = __this->___curNode_11; NullCheck(L_5); int32_t L_6 = L_5->___type_1; int32_t L_7 = L_6; RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), &L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast(0), (RuntimeObject*)L_8); String_t* L_9; L_9 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA9861AB400894B6A90D438BF33D1986E5E7927B)), L_4, NULL); 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, L_9, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42_RuntimeMethod_var))); } IL_003b: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___buffer0; if (L_11) { goto IL_0049; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_12 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_12); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42_RuntimeMethod_var))); } IL_0049: { int32_t L_13 = ___count2; if ((((int32_t)L_13) >= ((int32_t)0))) { goto IL_0058; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_14 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_14); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42_RuntimeMethod_var))); } IL_0058: { int32_t L_15 = ___index1; if ((((int32_t)L_15) >= ((int32_t)0))) { goto IL_0067; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_16 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_16); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42_RuntimeMethod_var))); } IL_0067: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ___buffer0; NullCheck(L_17); int32_t L_18 = ___index1; int32_t L_19 = ___count2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_17)->max_length)), L_18))) >= ((int32_t)L_19))) { goto IL_007a; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_20 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_20); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_ReadValueChunk_m93AE77D645A8B877A2036DDD16C7E2B26A7C9F42_RuntimeMethod_var))); } IL_007a: { int32_t L_21 = __this->___parsingFunction_7; if ((((int32_t)L_21) == ((int32_t)((int32_t)23)))) { goto IL_00d2; } } { int32_t L_22 = __this->___readState_66; if ((((int32_t)L_22) == ((int32_t)1))) { goto IL_008f; } } { return 0; } IL_008f: { int32_t L_23 = __this->___parsingFunction_7; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)21))))) { goto IL_00a3; } } { __this->___incReadState_50 = ((int32_t)11); goto IL_00c3; } IL_00a3: { __this->___incReadState_50 = ((int32_t)10); int32_t L_24 = __this->___nextParsingFunction_8; __this->___nextNextParsingFunction_9 = L_24; int32_t L_25 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_25; } IL_00c3: { __this->___parsingFunction_7 = ((int32_t)23); __this->___readValueOffset_70 = 0; } IL_00d2: { int32_t L_26 = ___count2; if (L_26) { goto IL_00d7; } } { return 0; } IL_00d7: { V_0 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_27 = __this->___curNode_11; int32_t L_28 = __this->___readValueOffset_70; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = ___buffer0; int32_t L_30 = ___index1; int32_t L_31 = V_0; int32_t L_32 = ___count2; int32_t L_33 = V_0; NullCheck(L_27); int32_t L_34; L_34 = NodeData_CopyTo_m27B76639B9A28127C2B03164D7128939F26C8F90(L_27, L_28, L_29, ((int32_t)il2cpp_codegen_add(L_30, L_31)), ((int32_t)il2cpp_codegen_subtract(L_32, L_33)), NULL); V_1 = L_34; int32_t L_35 = V_0; int32_t L_36 = V_1; V_0 = ((int32_t)il2cpp_codegen_add(L_35, L_36)); int32_t L_37 = __this->___readValueOffset_70; int32_t L_38 = V_1; __this->___readValueOffset_70 = ((int32_t)il2cpp_codegen_add(L_37, L_38)); int32_t L_39 = V_0; int32_t L_40 = ___count2; if ((!(((uint32_t)L_39) == ((uint32_t)L_40)))) { goto IL_0138; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = ___buffer0; int32_t L_42 = ___index1; int32_t L_43 = ___count2; NullCheck(L_41); int32_t L_44 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_42, L_43)), 1)); uint16_t L_45 = (uint16_t)(L_41)->GetAt(static_cast(L_44)); bool L_46; L_46 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_45, NULL); if (!L_46) { goto IL_0136; } } { int32_t L_47 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_47, 1)); int32_t L_48 = __this->___readValueOffset_70; __this->___readValueOffset_70 = ((int32_t)il2cpp_codegen_subtract(L_48, 1)); int32_t L_49 = V_0; if (L_49) { goto IL_0136; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral96065EF4DC93B53D7A1F952FADF4921C43506B4C, NULL); } IL_0136: { int32_t L_50 = V_0; return L_50; } IL_0138: { int32_t L_51 = __this->___incReadState_50; if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)11))))) { goto IL_0202; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_52 = __this->___curNode_11; String_t* L_53 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_52); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_52, L_53, NULL); V_2 = (bool)0; V_3 = 0; V_4 = 0; goto IL_01a2; } IL_015e: { V_5 = 0; bool L_54; L_54 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_3), (&V_4), (&V_5), NULL); V_2 = L_54; int32_t L_55 = ___count2; int32_t L_56 = V_0; V_6 = ((int32_t)il2cpp_codegen_subtract(L_55, L_56)); int32_t L_57 = V_6; int32_t L_58 = V_4; int32_t L_59 = V_3; if ((((int32_t)L_57) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_58, L_59))))) { goto IL_0181; } } { int32_t L_60 = V_4; int32_t L_61 = V_3; V_6 = ((int32_t)il2cpp_codegen_subtract(L_60, L_61)); } IL_0181: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_62 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = L_62->___chars_0; int32_t L_64 = V_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_65 = ___buffer0; int32_t L_66 = ___index1; int32_t L_67 = V_0; int32_t L_68 = V_6; XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441(L_63, L_64, L_65, ((int32_t)il2cpp_codegen_add(L_66, L_67)), L_68, NULL); int32_t L_69 = V_0; int32_t L_70 = V_6; V_0 = ((int32_t)il2cpp_codegen_add(L_69, L_70)); int32_t L_71 = V_3; int32_t L_72 = V_6; V_3 = ((int32_t)il2cpp_codegen_add(L_71, L_72)); } IL_01a2: { int32_t L_73 = V_0; int32_t L_74 = ___count2; if ((((int32_t)L_73) >= ((int32_t)L_74))) { goto IL_01a9; } } { bool L_75 = V_2; if (!L_75) { goto IL_015e; } } IL_01a9: { bool L_76 = V_2; G_B32_0 = __this; if (L_76) { G_B33_0 = __this; goto IL_01b1; } } { G_B34_0 = ((int32_t)11); G_B34_1 = G_B32_0; goto IL_01b3; } IL_01b1: { G_B34_0 = ((int32_t)10); G_B34_1 = G_B33_0; } IL_01b3: { NullCheck(G_B34_1); G_B34_1->___incReadState_50 = G_B34_0; int32_t L_77 = V_0; int32_t L_78 = ___count2; if ((!(((uint32_t)L_77) == ((uint32_t)L_78)))) { goto IL_01e0; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = ___buffer0; int32_t L_80 = ___index1; int32_t L_81 = ___count2; NullCheck(L_79); int32_t L_82 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_80, L_81)), 1)); uint16_t L_83 = (uint16_t)(L_79)->GetAt(static_cast(L_82)); bool L_84; L_84 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_83, NULL); if (!L_84) { goto IL_01e0; } } { int32_t L_85 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_85, 1)); int32_t L_86 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract(L_86, 1)); int32_t L_87 = V_0; if (L_87) { goto IL_01e0; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral96065EF4DC93B53D7A1F952FADF4921C43506B4C, NULL); } IL_01e0: { __this->___readValueOffset_70 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_88 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_89 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_90 = L_89->___chars_0; int32_t L_91 = V_3; int32_t L_92 = V_4; int32_t L_93 = V_3; NullCheck(L_88); NodeData_SetValue_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5(L_88, L_90, L_91, ((int32_t)il2cpp_codegen_subtract(L_92, L_93)), NULL); } IL_0202: { int32_t L_94 = V_0; return L_94; } } // System.Boolean System.Xml.XmlTextReaderImpl::HasLineInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_HasLineInfo_mDD02416B4957C0F976D5077F594C88408E5C1297 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_LineNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_LineNumber_m443B632CB79AF66C3579E9DE0076BCEFBA8785A0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1; L_1 = NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090(L_0, NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_LinePosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_LinePosition_m94FF883CCF40A6A27BC4BA972BD4DF4293FDC4A8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1; L_1 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_0, NULL); return L_1; } } // System.Collections.Generic.IDictionary`2 System.Xml.XmlTextReaderImpl::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_mB55DA94F55A65E1BB9E8801B347844284D6CBC16 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___scope0, const RuntimeMethod* method) { { int32_t L_0 = ___scope0; RuntimeObject* L_1; L_1 = XmlTextReaderImpl_GetNamespacesInScope_mA03CE089EB011BDAFF02E607734F0D58F4F66810(__this, L_0, NULL); return L_1; } } // System.String System.Xml.XmlTextReaderImpl::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_System_Xml_IXmlNamespaceResolver_LookupNamespace_mDD448992A7FC76B3F74B118CE79CE8F2E9BAEB87 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___prefix0, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1; L_1 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, __this, L_0); return L_1; } } // System.String System.Xml.XmlTextReaderImpl::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_System_Xml_IXmlNamespaceResolver_LookupPrefix_m517A1160ED730A02B0EFBA3E2C7148CEF003031D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___namespaceName0, const RuntimeMethod* method) { { String_t* L_0 = ___namespaceName0; String_t* L_1; L_1 = XmlTextReaderImpl_LookupPrefix_mF6D85FCBDA270E1AFC2F1AC19719111A1169BD3D(__this, L_0, NULL); return L_1; } } // System.Collections.Generic.IDictionary`2 System.Xml.XmlTextReaderImpl::GetNamespacesInScope(System.Xml.XmlNamespaceScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_GetNamespacesInScope_mA03CE089EB011BDAFF02E607734F0D58F4F66810 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___scope0, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_38; int32_t L_1 = ___scope0; NullCheck(L_0); RuntimeObject* L_2; L_2 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(15 /* System.Collections.Generic.IDictionary`2 System.Xml.XmlNamespaceManager::GetNamespacesInScope(System.Xml.XmlNamespaceScope) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlTextReaderImpl::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_LookupPrefix_mF6D85FCBDA270E1AFC2F1AC19719111A1169BD3D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___namespaceName0, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_38; String_t* L_1 = ___namespaceName0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(17 /* System.String System.Xml.XmlNamespaceManager::LookupPrefix(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_25; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl::set_Namespaces(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___readState_66; if (!L_0) { goto IL_0018; } } { String_t* L_1; L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); 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, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE_RuntimeMethod_var))); } IL_0018: { bool L_3 = ___value0; __this->___supportNamespaces_25 = L_3; bool L_4 = ___value0; if (!L_4) { goto IL_008c; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_5 = __this->___namespaceManager_38; if (!((NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4*)IsInstClass((RuntimeObject*)L_5, NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4_il2cpp_TypeInfo_var))) { goto IL_0070; } } { bool L_6 = __this->___fragment_48; if (!L_6) { goto IL_005f; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_7 = __this->___fragmentParserContext_47; if (!L_7) { goto IL_005f; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = __this->___fragmentParserContext_47; NullCheck(L_8); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_9; L_9 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_8, NULL); if (!L_9) { goto IL_005f; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_10 = __this->___fragmentParserContext_47; NullCheck(L_10); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_11; L_11 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_10, NULL); __this->___namespaceManager_38 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_11); goto IL_0070; } IL_005f: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12 = __this->___nameTable_20; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_13 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_13); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_13, L_12, NULL); __this->___namespaceManager_38 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_13); } IL_0070: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_14 = __this->___xmlContext_40; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_15 = __this->___namespaceManager_38; String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_15); String_t* L_17; L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_15, L_16); NullCheck(L_14); L_14->___defaultNamespace_2 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_14->___defaultNamespace_2), (void*)L_17); return; } IL_008c: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_18 = __this->___namespaceManager_38; if (((NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4*)IsInstClass((RuntimeObject*)L_18, NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4_il2cpp_TypeInfo_var))) { goto IL_00a4; } } { NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* L_19 = (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4*)il2cpp_codegen_object_new(NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4_il2cpp_TypeInfo_var); NullCheck(L_19); NoNamespaceManager__ctor_m879F0538BA1CC8B725BA652BCC9868981D23FCE8(L_19, NULL); __this->___namespaceManager_38 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_19); } IL_00a4: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_20 = __this->___xmlContext_40; String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_20); L_20->___defaultNamespace_2 = L_21; Il2CppCodeGenWriteBarrier((void**)(&L_20->___defaultNamespace_2), (void*)L_21); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_Normalization() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Normalization_mE15D41565024AE5102E07C09891BC40D027E6529 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___normalize_24; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl::set_Normalization(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_Normalization_mD7A69A6E43CDBC34521C920727D6981675EA87EA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___readState_66; if ((!(((uint32_t)L_0) == ((uint32_t)4)))) { goto IL_0019; } } { String_t* L_1; L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); 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, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_set_Normalization_mD7A69A6E43CDBC34521C920727D6981675EA87EA_RuntimeMethod_var))); } IL_0019: { bool L_3 = ___value0; __this->___normalize_24 = L_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); RuntimeObject* L_5 = L_4->___entity_17; if (!L_5) { goto IL_003f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); RuntimeObject* L_7 = L_6->___entity_17; NullCheck(L_7); bool L_8; L_8 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsExternal() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_7); if (!L_8) { goto IL_004e; } } IL_003f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); bool L_10 = ___value0; L_9->___eolNormalized_19 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0); } IL_004e: { return; } } // System.Void System.Xml.XmlTextReaderImpl::set_WhitespaceHandling(System.Xml.WhitespaceHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_WhitespaceHandling_mF03CD74F490259694D1CF7D60C5EC59CEA03B267 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = __this->___readState_66; if ((!(((uint32_t)L_0) == ((uint32_t)4)))) { goto IL_0019; } } { String_t* L_1; L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); 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, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_set_WhitespaceHandling_mF03CD74F490259694D1CF7D60C5EC59CEA03B267_RuntimeMethod_var))); } IL_0019: { int32_t L_3 = ___value0; if ((!(((uint32_t)L_3) > ((uint32_t)2)))) { goto IL_002d; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_5); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7555A381F6A885BD4329663AA477583D04E3F792)), L_4, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_set_WhitespaceHandling_mF03CD74F490259694D1CF7D60C5EC59CEA03B267_RuntimeMethod_var))); } IL_002d: { int32_t L_6 = ___value0; __this->___whitespaceHandling_26 = L_6; return; } } // System.Void System.Xml.XmlTextReaderImpl::set_EntityHandling(System.Xml.EntityHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_0018; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) == ((int32_t)2))) { goto IL_0018; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_3 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_3); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9AF2888151C96525F9312E8AA41CFF3F0B3CDD9)), L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C_RuntimeMethod_var))); } IL_0018: { int32_t L_4 = ___value0; __this->___entityHandling_28 = L_4; return; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_IsResolverSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsResolverSet_mE4680CEFE9EF053C07E21CF5759C26EB7D7E2383 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___xmlResolverIsSet_76; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___value0; __this->___xmlResolver_22 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_22), (void*)L_0); __this->___xmlResolverIsSet_76 = (bool)1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); L_1->___baseUri_14 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_1->___baseUri_14), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL); V_0 = 0; goto IL_0034; } IL_001e: { ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_2 = __this->___parsingStatesStack_41; int32_t L_3 = V_0; NullCheck(L_2); ((L_2)->GetAddressAt(static_cast(L_3)))->___baseUri_14 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; Il2CppCodeGenWriteBarrier((void**)(&((L_2)->GetAddressAt(static_cast(L_3)))->___baseUri_14), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL); int32_t L_4 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1)); } IL_0034: { int32_t L_5 = V_0; int32_t L_6 = __this->___parsingStatesStackTop_42; if ((((int32_t)L_5) <= ((int32_t)L_6))) { goto IL_001e; } } { return; } } // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::get_DtdParserProxy_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlTextReaderImpl_get_DtdParserProxy_NameTable_m9D90E1683C95F7DB7AA9244FF91A472B3BD48685 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_20; return L_0; } } // System.Xml.IXmlNamespaceResolver System.Xml.XmlTextReaderImpl::get_DtdParserProxy_NamespaceResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_NamespaceResolver_m801F8EFB95433131030357031EF73C68EB43F490 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_38; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_DtdValidation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_DtdValidation_mA08BCC8111CAD98A8F247770DC6C5023E7A1C071 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0; L_0 = XmlTextReaderImpl_get_DtdValidation_mE5F1E5DAF37701D9E2278709B95107872BA06DA7(__this, NULL); return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_Normalization() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Normalization_m69989B2A994543AFE386FFF064EA7C9C674AF212 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___normalize_24; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Namespaces_mDE78BC151B29E932636DF2B4521450C3FF8F25F6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_25; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_V1CompatibilityMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_mFA338124C3C5FF871125360FA041C8E74C7AE978 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___v1Compat_37; return L_0; } } // System.Uri System.Xml.XmlTextReaderImpl::get_DtdParserProxy_BaseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* XmlTextReaderImpl_get_DtdParserProxy_BaseUri_m1390E43C8B3E4033041B8594E8B0D7C215C38C32 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); String_t* L_1 = L_0->___baseUriStr_13; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_0050; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = L_3->___baseUri_14; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_5; L_5 = Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682(L_4, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_5) { goto IL_0050; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_6 = __this->___xmlResolver_22; if (!L_6) { goto IL_0050; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_8 = __this->___xmlResolver_22; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); String_t* L_10 = L_9->___baseUriStr_13; NullCheck(L_8); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11; L_11 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_8, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_10); L_7->___baseUri_14 = L_11; Il2CppCodeGenWriteBarrier((void**)(&L_7->___baseUri_14), (void*)L_11); } IL_0050: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = L_12->___baseUri_14; return L_13; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_IsEof() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_IsEof_m83F5C6AD3C68EE41EE0E6F1862A813CC2DE83362 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); bool L_1 = L_0->___isEof_15; return L_1; } } // System.Char[] System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* XmlTextReaderImpl_get_DtdParserProxy_ParsingBuffer_mECC04A7A08B2E4D88BCF379D8EC403C54B2ADA16 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ParsingBufferLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_ParsingBufferLength_m7508584AD802A8495380E88E670D44CE67871AAD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charsUsed_2; return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_CurrentPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_CurrentPosition_m5D6EEB470416C100210BAEA1BA750D6369663014 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; return L_1; } } // System.Void System.Xml.XmlTextReaderImpl::set_DtdParserProxy_CurrentPosition(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DtdParserProxy_CurrentPosition_mB6EAE6AEA049EA5B1B54E5D850C6695CDC349DBD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___value0, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = ___value0; L_0->___charPos_1 = L_1; return; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_EntityStackLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_EntityStackLength_mB534B77ECA1FDF5F92373BDF1EAA3A1CF29AB4F1 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___parsingStatesStackTop_42; return ((int32_t)il2cpp_codegen_add(L_0, 1)); } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_IsEntityEolNormalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_IsEntityEolNormalized_mE5F5019380401A88366A88D938925389F6160A6E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); bool L_1 = L_0->___eolNormalized_19; return L_1; } } // System.Xml.IValidationEventHandling System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ValidationEventHandling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_ValidationEventHandling_mB2F5898C6DDF21BDA19FB52D66B0EC56F10908C3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___validationEventHandling_57; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnNewLine(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnNewLine_m4FE25050BC72D4CDC7A20568DE9C28D7FA5CA41A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) { { int32_t L_0 = ___pos0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_0, NULL); return; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_LineNo_m26AF48CCD7B764E9ADCD2492703F5C4D56C92B17 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1; L_1 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_0, NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_LineStartPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_LineStartPosition_m64E2F43379705C24F6D37C20E520E51B5AE96D14 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___lineStartPos_12; return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ReadData_m07882349E92F53D1FEFF74F0EF346861E6DE5290 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); return L_0; } } // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseNumericCharRef(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ParseNumericCharRef_m99D3A1CCEE205686A9333400EDA4A3F241F0C603 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___internalSubsetBuilder0, const RuntimeMethod* method) { int32_t V_0 = 0; { StringBuilder_t* L_0 = ___internalSubsetBuilder0; int32_t L_1; L_1 = XmlTextReaderImpl_ParseNumericCharRef_m9DAF75CCAB6BE2E4F1E955BC1B252006EFFB832F(__this, (bool)1, L_0, (&V_0), NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ParseNamedCharRef_m0AFB5F8D6C79FBE3505A7034821BC238C17C8017 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___expand0, StringBuilder_t* ___internalSubsetBuilder1, const RuntimeMethod* method) { { bool L_0 = ___expand0; StringBuilder_t* L_1 = ___internalSubsetBuilder1; int32_t L_2; L_2 = XmlTextReaderImpl_ParseNamedCharRef_mF403C076AA9507980567EB27D8769ADE153F8421(__this, L_0, L_1, NULL); return L_2; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParsePI(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParsePI_mA3AA8585594D5B9DD9AA34185F5B812ABF112DA6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) { int32_t V_0 = 0; { StringBuilder_t* L_0 = ___sb0; if (L_0) { goto IL_0021; } } { int32_t L_1 = __this->___parsingMode_65; V_0 = L_1; __this->___parsingMode_65 = 1; bool L_2; L_2 = XmlTextReaderImpl_ParsePI_m3F73DDC051BD4C3422093EFA6EFB21FBF48A1A08(__this, (StringBuilder_t*)NULL, NULL); int32_t L_3 = V_0; __this->___parsingMode_65 = L_3; return; } IL_0021: { StringBuilder_t* L_4 = ___sb0; bool L_5; L_5 = XmlTextReaderImpl_ParsePI_m3F73DDC051BD4C3422093EFA6EFB21FBF48A1A08(__this, L_4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseComment(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParseComment_mC220CD16264F0F8C4F26103E91CB932FC16A6539 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) { int32_t V_0 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { StringBuilder_t* L_0 = ___sb0; if (L_0) { goto IL_0021_1; } } { int32_t L_1 = __this->___parsingMode_65; V_0 = L_1; __this->___parsingMode_65 = 1; XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74(__this, 8, NULL); int32_t L_2 = V_0; __this->___parsingMode_65 = L_2; goto IL_0064_1; } IL_0021_1: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = __this->___curNode_11; V_1 = L_3; int32_t L_4 = __this->___index_12; int32_t L_5 = __this->___attrCount_14; int32_t L_6 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7; L_7 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_4, L_5)), 1)), L_6, NULL); __this->___curNode_11 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_7); XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74(__this, 8, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = __this->___curNode_11; StringBuilder_t* L_9 = ___sb0; NullCheck(L_8); NodeData_CopyTo_m9D59E5E6EBD3C691A34AC2ADD32FB6C914AB24C2(L_8, 0, L_9, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = V_1; __this->___curNode_11 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_10); } IL_0064_1: { goto IL_00ad; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0066; } throw e; } CATCH_0066: {// begin catch(System.Xml.XmlException) { NullCheck(((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*))); String_t* L_11; L_11 = XmlException_get_ResString_m977084C1A1F883C2BED73B1F956D980E62649C7A_inline(((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)), NULL); bool L_12; L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC)), NULL); if (!L_12) { goto IL_00a9; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); RuntimeObject* L_14 = L_13->___entity_17; if (!L_14) { goto IL_00a9; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16; L_16 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_15, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18; L_18 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_17, NULL); XmlTextReaderImpl_SendValidationEvent_m8ED366B9B5A8F444B385EA8725CC08667F3B9D85(__this, 0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD259EE6AB580E33090940BF472020FA738C8617A)), (String_t*)NULL, L_16, L_18, NULL); goto IL_00ab; } IL_00a9: { IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_DtdParserProxy_ParseComment_mC220CD16264F0F8C4F26103E91CB932FC16A6539_RuntimeMethod_var))); } IL_00ab: { IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00ad; } }// end catch (depth: 1) IL_00ad: { return; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_IsResolverNull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___xmlResolver_22; if (!L_0) { goto IL_001b; } } { bool L_1; L_1 = XmlReaderSection_get_ProhibitDefaultUrlResolver_m22E5E50B536E3F9F7AE02CEA4581B1872DE5E606(NULL); if (!L_1) { goto IL_0019; } } { bool L_2 = __this->___xmlResolverIsSet_76; return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); } IL_0019: { return (bool)0; } IL_001b: { return (bool)1; } } // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::GetTempResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlTextReaderImpl_GetTempResolver_mD25BCDBDD60AA6555E5ED5324181C1C6BD046A4F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___xmlResolver_22; if (!L_0) { goto IL_000f; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = __this->___xmlResolver_22; return L_1; } IL_000f: { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_2 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_2); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_2, NULL); return L_2; } } // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushEntity(System.Xml.IDtdEntityInfo,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushEntity_mF7D0B660B83C4A38D3E595C899D5957FE25C1ABD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, int32_t* ___entityId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { RuntimeObject* L_0 = ___entity0; NullCheck(L_0); bool L_1; L_1 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsExternal() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_0); if (!L_1) { goto IL_001f; } } { bool L_2; L_2 = XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C(__this, NULL); if (!L_2) { goto IL_0015; } } { int32_t* L_3 = ___entityId1; *((int32_t*)L_3) = (int32_t)(-1); return (bool)0; } IL_0015: { RuntimeObject* L_4 = ___entity0; bool L_5; L_5 = XmlTextReaderImpl_PushExternalEntity_m547C80F437D100BC53D09B4E965BB58CE026557D(__this, L_4, NULL); V_0 = L_5; goto IL_0028; } IL_001f: { RuntimeObject* L_6 = ___entity0; XmlTextReaderImpl_PushInternalEntity_m1D90F101FA95554B361AD62135C9C796C1809407(__this, L_6, NULL); V_0 = (bool)1; } IL_0028: { int32_t* L_7 = ___entityId1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); int32_t L_9 = L_8->___entityId_18; *((int32_t*)L_7) = (int32_t)L_9; bool L_10 = V_0; return L_10; } } // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PopEntity(System.Xml.IDtdEntityInfo&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PopEntity_m0D03A5FA761537C5B673C7D083C63F5F3C525E4B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject** ___oldEntity0, int32_t* ___newEntityId1, const RuntimeMethod* method) { { int32_t L_0 = __this->___parsingStatesStackTop_42; if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0011; } } { RuntimeObject** L_1 = ___oldEntity0; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); int32_t* L_2 = ___newEntityId1; *((int32_t*)L_2) = (int32_t)(-1); return (bool)0; } IL_0011: { RuntimeObject** L_3 = ___oldEntity0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); RuntimeObject* L_5 = L_4->___entity_17; *((RuntimeObject**)L_3) = (RuntimeObject*)L_5; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)L_5); XmlTextReaderImpl_PopEntity_m3F59397F9382BD7DF60D2249186E342F4EAC99E0(__this, NULL); int32_t* L_6 = ___newEntityId1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8 = L_7->___entityId_18; *((int32_t*)L_6) = (int32_t)L_8; return (bool)1; } } // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushExternalSubset(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushExternalSubset_mBAF82FF6D19641134F1453DA17C20E9A33D74ED3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___systemId0, String_t* ___publicId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0; L_0 = XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C(__this, NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = L_1->___baseUri_14; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_3; L_3 = Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682(L_2, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_3) { goto IL_0051; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); String_t* L_5 = L_4->___baseUriStr_13; bool L_6; L_6 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_5, NULL); if (L_6) { goto IL_0051; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_8 = __this->___xmlResolver_22; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); String_t* L_10 = L_9->___baseUriStr_13; NullCheck(L_8); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11; L_11 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_8, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_10); L_7->___baseUri_14 = L_11; Il2CppCodeGenWriteBarrier((void**)(&L_7->___baseUri_14), (void*)L_11); } IL_0051: { String_t* L_12 = ___publicId1; String_t* L_13 = ___systemId0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_14 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15 = L_14->___baseUri_14; XmlTextReaderImpl_PushExternalEntityOrSubset_m6512BA1B5A447175E8A0B00D75A62D25F04E8BA0(__this, L_12, L_13, L_15, (String_t*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); L_16->___entity_17 = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_16->___entity_17), (void*)(RuntimeObject*)NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); L_17->___entityId_18 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_18 = (&__this->___ps_6); int32_t L_19 = L_18->___charPos_1; V_0 = L_19; bool L_20 = __this->___v1Compat_37; if (!L_20) { goto IL_0099; } } { int32_t L_21; L_21 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); } IL_0099: { bool L_22; L_22 = XmlTextReaderImpl_ParseXmlDeclaration_mE57790EE79B349C9AA99472BA1B5DE58604660EA(__this, (bool)1, NULL); if (L_22) { goto IL_00ae; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); int32_t L_24 = V_0; L_23->___charPos_1 = L_24; } IL_00ae: { return (bool)1; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_PushInternalDtd(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_PushInternalDtd_mAF1BEB6EA4615537D9D43878CD26250AEE7D5A04 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUri0, String_t* ___internalDtd1, const RuntimeMethod* method) { { XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7(__this, NULL); String_t* L_0 = ___internalDtd1; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); XmlTextReaderImpl_RegisterConsumedCharacters_mC93EC992AB264BC7A08D193CEB0A87806E799D68(__this, ((int64_t)L_1), (bool)0, NULL); String_t* L_2 = ___baseUri0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3; L_3 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); String_t* L_4 = ___internalDtd1; XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(__this, L_2, L_3, L_4, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); L_5->___entity_17 = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_5->___entity_17), (void*)(RuntimeObject*)NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); L_6->___entityId_18 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); L_7->___eolNormalized_19 = (bool)0; return; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_Throw(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_Throw_m007CFAA6CC0A55B37895E3A9B242C33FE5F11702 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___e0, const RuntimeMethod* method) { { Exception_t* L_0 = ___e0; XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnSystemId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnSystemId_mFAEF87EE55FE4C1BEAAE833099C5E6BD25B6537F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___systemId0, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___keywordLineInfo1, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___systemLiteralLineInfo2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1; L_1 = XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39(__this, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560, ((int32_t)il2cpp_codegen_add(L_0, 1)), NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = L_1; String_t* L_3 = ___systemId0; NullCheck(L_2); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_2, L_3, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = L_2; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_5 = ___keywordLineInfo1; NullCheck(L_4); L_4->___lineInfo_10 = L_5; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_6 = ___systemLiteralLineInfo2; NullCheck(L_4); L_4->___lineInfo2_11 = L_6; return; } } // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnPublicId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnPublicId_mA9AE0CA29E94DDDF99C7675F1361E67775ABE11E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___publicId0, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___keywordLineInfo1, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___publicLiteralLineInfo2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1; L_1 = XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39(__this, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91, ((int32_t)il2cpp_codegen_add(L_0, 1)), NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = L_1; String_t* L_3 = ___publicId0; NullCheck(L_2); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_2, L_3, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = L_2; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_5 = ___keywordLineInfo1; NullCheck(L_4); L_4->___lineInfo_10 = L_5; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_6 = ___publicLiteralLineInfo2; NullCheck(L_4); L_4->___lineInfo2_11 = L_6; return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___res1, String_t* ___arg2, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = ___pos0; L_0->___charPos_1 = L_1; String_t* L_2 = ___res1; String_t* L_3 = ___arg2; XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Int32,System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___res1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args2, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = ___pos0; L_0->___charPos_1 = L_1; String_t* L_2 = ___res1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ___args2; XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274(__this, L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___res1, 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; } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = ___pos0; L_0->___charPos_1 = L_1; String_t* L_2 = ___res1; String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, 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 = ___res0; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, int32_t ___lineNo1, int32_t ___linePos2, 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*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; int32_t L_2 = ___lineNo1; int32_t L_3 = ___linePos2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); String_t* L_5 = L_4->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_6 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_6); XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077(L_6, L_0, L_1, L_2, L_3, L_5, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_6, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; String_t* L_1 = ___arg1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3; L_3 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_2, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5; L_5 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_4, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); String_t* L_7 = L_6->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_8 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_8); XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077(L_8, L_0, L_1, L_3, L_5, L_7, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_8, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, int32_t ___lineNo2, int32_t ___linePos3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; String_t* L_1 = ___arg1; int32_t L_2 = ___lineNo2; int32_t L_3 = ___linePos3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); String_t* L_5 = L_4->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_6 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_6); XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077(L_6, L_0, L_1, L_2, L_3, L_5, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_6, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___args1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3; L_3 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_2, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5; L_5 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_4, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); String_t* L_7 = L_6->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_8 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_8); XmlException__ctor_m9BF115E3E8CAC81B474E36A76805DC4F2E856879(L_8, L_0, L_1, L_3, L_5, L_7, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_8, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m04508E40E7C3D09720FCE5018406D8E4AFE9ABAD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, Exception_t* ___innerException2, 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; } { String_t* L_0 = ___res0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1; String_t* L_3 = ___arg1; NullCheck(L_2); ArrayElementTypeCheck (L_2, L_3); (L_2)->SetAt(static_cast(0), (String_t*)L_3); Exception_t* L_4 = ___innerException2; XmlTextReaderImpl_Throw_mF8A4BE38F9B4C45F0E94465DB04B241A7418C4A7(__this, L_0, L_2, L_4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.String,System.String[],System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_mF8A4BE38F9B4C45F0E94465DB04B241A7418C4A7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, Exception_t* ___innerException2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___args1; Exception_t* L_2 = ___innerException2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4; L_4 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_3, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6; L_6 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_5, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); String_t* L_8 = L_7->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_9 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_9); XmlException__ctor_mAF9987B6D433F91FBD0101527C492BA66AB25F37(L_9, L_0, L_1, L_2, L_4, L_6, L_8, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_9, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::Throw(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___e0, const RuntimeMethod* method) { XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* V_0 = NULL; { XmlTextReaderImpl_SetErrorState_mF7EC149FBA2F8CD34A1FE144754AE2F0A6673374(__this, NULL); Exception_t* L_0 = ___e0; V_0 = ((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IsInstClass((RuntimeObject*)L_0, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)))); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_1 = V_0; if (!L_1) { goto IL_0027; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline(L_3, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = V_0; NullCheck(L_5); int32_t L_6; L_6 = XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline(L_5, NULL); NullCheck(L_2); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_2, L_4, L_6, NULL); } IL_0027: { Exception_t* L_7 = ___e0; IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525_RuntimeMethod_var))); } } // System.Void System.Xml.XmlTextReaderImpl::ReThrow(System.Exception,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ReThrow_m58456B276A63FC28D06E961818452191F19A7502 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___e0, int32_t ___lineNo1, int32_t ___linePos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Exception_t* L_0 = ___e0; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_0); int32_t L_2 = ___lineNo1; int32_t L_3 = ___linePos2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); String_t* L_5 = L_4->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_6 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_6); XmlException__ctor_m9E8E4966F92E92928F2334A4B5A6992A20505AD7(L_6, L_1, (Exception_t*)NULL, L_2, L_3, L_5, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_6, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowWithoutLineInfo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, 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*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); String_t* L_3 = L_2->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_4); XmlException__ctor_mCD230657B1383DCA2BE352251351F34246E3371B(L_4, L_0, L_1, L_3, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowWithoutLineInfo(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; String_t* L_1 = ___arg1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); String_t* L_3 = L_2->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_4); XmlException__ctor_mCD230657B1383DCA2BE352251351F34246E3371B(L_4, L_0, L_1, L_3, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowWithoutLineInfo(System.String,System.String[],System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowWithoutLineInfo_m3F88E00870704C2A8B25E655F6EE70D8A5E572DD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, Exception_t* ___innerException2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___res0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___args1; Exception_t* L_2 = ___innerException2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); String_t* L_4 = L_3->___baseUriStr_13; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_5); XmlException__ctor_mAF9987B6D433F91FBD0101527C492BA66AB25F37(L_5, L_0, L_1, L_2, 0, 0, L_4, NULL); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(__this, L_5, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowInvalidChar(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___data0, int32_t ___length1, int32_t ___invCharPos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___invCharPos2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___data0; int32_t L_2 = ___length1; int32_t L_3 = ___invCharPos2; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4; L_4 = XmlException_BuildCharExceptionArgs_mC868154C32A2950D756F3E42B40D79DC4B7BBA33(L_1, L_2, L_3, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_0, _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0, L_4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::SetErrorState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetErrorState_mF7EC149FBA2F8CD34A1FE144754AE2F0A6673374 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { __this->___parsingFunction_7 = ((int32_t)10); __this->___readState_66 = 2; return; } } // System.Void System.Xml.XmlTextReaderImpl::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SendValidationEvent_m8ED366B9B5A8F444B385EA8725CC08667F3B9D85 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___severity0, String_t* ___code1, String_t* ___arg2, int32_t ___lineNo3, int32_t ___linePos4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___severity0; String_t* L_1 = ___code1; String_t* L_2 = ___arg2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); String_t* L_4 = L_3->___baseUriStr_13; int32_t L_5 = ___lineNo3; int32_t L_6 = ___linePos4; XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_7 = (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)il2cpp_codegen_object_new(XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); NullCheck(L_7); XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB(L_7, L_1, L_2, L_4, L_5, L_6, NULL); XmlTextReaderImpl_SendValidationEvent_m43EC07FF33D022C9FFCCD094589610257313E1EA(__this, L_0, L_7, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.Xml.Schema.XmlSchemaException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SendValidationEvent_m43EC07FF33D022C9FFCCD094589610257313E1EA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___severity0, XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* ___exception1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___validationEventHandling_57; if (!L_0) { goto IL_0015; } } { RuntimeObject* L_1 = __this->___validationEventHandling_57; XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_2 = ___exception1; int32_t L_3 = ___severity0; NullCheck(L_1); InterfaceActionInvoker2< Exception_t*, int32_t >::Invoke(1 /* System.Void System.Xml.IValidationEventHandling::SendEvent(System.Exception,System.Xml.Schema.XmlSeverityType) */, IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E_il2cpp_TypeInfo_var, L_1, L_2, L_3); } IL_0015: { return; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_InAttributeValueIterator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_InAttributeValueIterator_mF4A1766EF0CEE1D0BF89397367302BEA09BBC8CD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___attrCount_14; if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0017; } } { int32_t L_1 = __this->___parsingFunction_7; return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)((int32_t)22)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0017: { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::FinishAttributeValueIterator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishAttributeValueIterator_m263D3BAE1AD197444299D47708313B4DD7E3C632 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B10_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B9_0 = NULL; int32_t G_B11_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B11_1 = NULL; { int32_t L_0 = __this->___parsingFunction_7; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_0012; } } { XmlTextReaderImpl_FinishReadValueChunk_mA0FC504DC95E81D070F51567BEFEAAA7A68FB187(__this, NULL); goto IL_0022; } IL_0012: { int32_t L_1 = __this->___parsingFunction_7; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)24))))) { goto IL_0022; } } { XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3(__this, NULL); } IL_0022: { int32_t L_2 = __this->___parsingFunction_7; if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)22))))) { goto IL_006f; } } { goto IL_0036; } IL_002e: { bool L_3; L_3 = XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6(__this, (bool)0, NULL); } IL_0036: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5 = L_4->___entityId_18; int32_t L_6 = __this->___attributeValueBaseEntityId_55; if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_002e; } } { __this->___emptyEntityInAttributeResolved_56 = (bool)0; int32_t L_7 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_7; int32_t L_8 = __this->___index_12; G_B9_0 = __this; if ((((int32_t)L_8) > ((int32_t)0))) { G_B10_0 = __this; goto IL_0069; } } { G_B11_0 = 5; G_B11_1 = G_B9_0; goto IL_006a; } IL_0069: { G_B11_0 = 0; G_B11_1 = G_B10_0; } IL_006a: { NullCheck(G_B11_1); G_B11_1->___nextParsingFunction_8 = G_B11_0; } IL_006f: { return; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdValidation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdValidation_mE5F1E5DAF37701D9E2278709B95107872BA06DA7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___validationEventHandling_57; return (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); } } // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m46F47AB7CDACB319C89A76F6642BFB512C0B5B33 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___stream0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2 = ___encoding1; XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF(__this, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_0, L_1, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, 0, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.String,System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m8F038C9668062037046A6A7B729C5F0430BF5B74 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream1, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding2, const RuntimeMethod* method) { { String_t* L_0 = ___baseUriStr0; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___stream1; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2 = ___encoding2; XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF(__this, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_0, L_1, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, 0, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.Uri,System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m89A74BC08EA5E6FB283BBA9FFB6B4C769AD7D8A6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream1, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding2, const RuntimeMethod* method) { { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___baseUri0; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___baseUri0; NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___stream1; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4 = ___encoding2; XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF(__this, L_0, L_2, L_3, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, 0, L_4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.Uri,System.String,System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_mEDB37931B1A8CE459ECFC6ED4DAFA756B5EF55A9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, String_t* ___baseUriStr1, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream2, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding3, const RuntimeMethod* method) { { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___baseUri0; String_t* L_1 = ___baseUriStr1; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___stream2; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3 = ___encoding3; XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF(__this, L_0, L_1, L_2, (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL, 0, L_3, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitStreamInput(System.Uri,System.String,System.IO.Stream,System.Byte[],System.Int32,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStreamInput_m056E4CE5191E4C7BFFE524B9F6ADA5578700C5DF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, String_t* ___baseUriStr1, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream2, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bytes3, int32_t ___byteCount4, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___stream2; L_0->___stream_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&L_0->___stream_5), (void*)L_1); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___baseUri0; L_2->___baseUri_14 = L_3; Il2CppCodeGenWriteBarrier((void**)(&L_2->___baseUri_14), (void*)L_3); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); String_t* L_5 = ___baseUriStr1; L_4->___baseUriStr_13 = L_5; Il2CppCodeGenWriteBarrier((void**)(&L_4->___baseUriStr_13), (void*)L_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___bytes3; if (!L_6) { goto IL_0052; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___bytes3; L_7->___bytes_7 = L_8; Il2CppCodeGenWriteBarrier((void**)(&L_7->___bytes_7), (void*)L_8); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = ___byteCount4; L_9->___bytesUsed_9 = L_10; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = L_11->___bytes_7; NullCheck(L_12); V_0 = ((int32_t)(((RuntimeArray*)L_12)->max_length)); goto IL_00a4; } IL_0052: { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_13 = __this->___laterInitParam_4; if (!L_13) { goto IL_006f; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_14 = __this->___laterInitParam_4; NullCheck(L_14); bool L_15 = L_14->___useAsync_0; if (!L_15) { goto IL_006f; } } { V_0 = ((int32_t)65536); goto IL_0076; } IL_006f: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_16 = ___stream2; il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); int32_t L_17; L_17 = XmlReader_CalcBufferSize_m11D5390B4184ABD28633102EA1502C6BB4B71C1D(L_16, NULL); V_0 = L_17; } IL_0076: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_18 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = L_18->___bytes_7; if (!L_19) { goto IL_0093; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_20->___bytes_7; NullCheck(L_21); int32_t L_22 = V_0; if ((((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))) >= ((int32_t)L_22))) { goto IL_00a4; } } IL_0093: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); int32_t L_24 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_24); L_23->___bytes_7 = L_25; Il2CppCodeGenWriteBarrier((void**)(&L_23->___bytes_7), (void*)L_25); } IL_00a4: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = L_26->___chars_0; if (!L_27) { goto IL_00c3; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_28 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = L_28->___chars_0; NullCheck(L_29); int32_t L_30 = V_0; if ((((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))) >= ((int32_t)((int32_t)il2cpp_codegen_add(L_30, 1))))) { goto IL_00d6; } } IL_00c3: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); int32_t L_32 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_32, 1))); L_31->___chars_0 = L_33; Il2CppCodeGenWriteBarrier((void**)(&L_31->___chars_0), (void*)L_33); } IL_00d6: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); L_34->___bytePos_8 = 0; goto IL_013e; } IL_00e4: { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_35 = ___stream2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_36 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = L_36->___bytes_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_38 = (&__this->___ps_6); int32_t L_39 = L_38->___bytesUsed_9; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_40 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = L_40->___bytes_7; NullCheck(L_41); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_42 = (&__this->___ps_6); int32_t L_43 = L_42->___bytesUsed_9; NullCheck(L_35); int32_t L_44; L_44 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_35, L_37, L_39, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_41)->max_length)), L_43))); V_4 = L_44; int32_t L_45 = V_4; if (L_45) { goto IL_012d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_46 = (&__this->___ps_6); L_46->___isStreamEof_16 = (bool)1; goto IL_016b; } IL_012d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t* L_48 = (&L_47->___bytesUsed_9); int32_t* L_49 = L_48; int32_t L_50 = *((int32_t*)L_49); int32_t L_51 = V_4; *((int32_t*)L_49) = (int32_t)((int32_t)il2cpp_codegen_add(L_50, L_51)); } IL_013e: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_52 = (&__this->___ps_6); int32_t L_53 = L_52->___bytesUsed_9; if ((((int32_t)L_53) >= ((int32_t)4))) { goto IL_016b; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_55 = L_54->___bytes_7; NullCheck(L_55); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_56 = (&__this->___ps_6); int32_t L_57 = L_56->___bytesUsed_9; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_55)->max_length)), L_57))) > ((int32_t)0))) { goto IL_00e4; } } IL_016b: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_58 = ___encoding5; if (L_58) { goto IL_0177; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_59; L_59 = XmlTextReaderImpl_DetectEncoding_mE066883A6515E969053A7DA750215B11D01076A4(__this, NULL); ___encoding5 = L_59; } IL_0177: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_60 = ___encoding5; XmlTextReaderImpl_SetupEncoding_m470DB12F87B04FBFED1621D5931CE18E2CA2E188(__this, L_60, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_61 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_62 = L_61->___encoding_3; NullCheck(L_62); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_63; L_63 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(6 /* System.Byte[] System.Text.Encoding::GetPreamble() */, L_62); V_1 = L_63; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_64 = V_1; NullCheck(L_64); V_2 = ((int32_t)(((RuntimeArray*)L_64)->max_length)); V_3 = 0; goto IL_01ae; } IL_0198: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_65 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_66 = L_65->___bytes_7; int32_t L_67 = V_3; NullCheck(L_66); int32_t L_68 = L_67; uint8_t L_69 = (L_66)->GetAt(static_cast(L_68)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_70 = V_1; int32_t L_71 = V_3; NullCheck(L_70); int32_t L_72 = L_71; uint8_t L_73 = (L_70)->GetAt(static_cast(L_72)); if ((!(((uint32_t)L_69) == ((uint32_t)L_73)))) { goto IL_01c0; } } { int32_t L_74 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_74, 1)); } IL_01ae: { int32_t L_75 = V_3; int32_t L_76 = V_2; if ((((int32_t)L_75) >= ((int32_t)L_76))) { goto IL_01c0; } } { int32_t L_77 = V_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_78 = (&__this->___ps_6); int32_t L_79 = L_78->___bytesUsed_9; if ((((int32_t)L_77) < ((int32_t)L_79))) { goto IL_0198; } } IL_01c0: { int32_t L_80 = V_3; int32_t L_81 = V_2; if ((!(((uint32_t)L_80) == ((uint32_t)L_81)))) { goto IL_01d0; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_82 = (&__this->___ps_6); int32_t L_83 = V_2; L_82->___bytePos_8 = L_83; } IL_01d0: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_84 = (&__this->___ps_6); int32_t L_85 = L_84->___bytePos_8; __this->___documentStartBytePos_69 = L_85; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_86 = (&__this->___ps_6); bool L_87 = __this->___normalize_24; L_86->___eolNormalized_19 = (bool)((((int32_t)L_87) == ((int32_t)0))? 1 : 0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_88 = (&__this->___ps_6); L_88->___appendMode_4 = (bool)1; int32_t L_89; L_89 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitTextReaderInput(System.String,System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitTextReaderInput_mD59812F5A78B70F10C81F8248069530D54289952 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input1, const RuntimeMethod* method) { { String_t* L_0 = ___baseUriStr0; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_1 = ___input1; XmlTextReaderImpl_InitTextReaderInput_mFA8F8F8AAD41AF30E00B733D8D3998D7C018DC87(__this, L_0, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_1, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitTextReaderInput(System.String,System.Uri,System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitTextReaderInput_mFA8F8F8AAD41AF30E00B733D8D3998D7C018DC87 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri1, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_1 = ___input2; L_0->___textReader_10 = L_1; Il2CppCodeGenWriteBarrier((void**)(&L_0->___textReader_10), (void*)L_1); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); String_t* L_3 = ___baseUriStr0; L_2->___baseUriStr_13 = L_3; Il2CppCodeGenWriteBarrier((void**)(&L_2->___baseUriStr_13), (void*)L_3); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_5 = ___baseUri1; L_4->___baseUri_14 = L_5; Il2CppCodeGenWriteBarrier((void**)(&L_4->___baseUri_14), (void*)L_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = L_6->___chars_0; if (L_7) { goto IL_0072; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_8 = __this->___laterInitParam_4; if (!L_8) { goto IL_005d; } } { LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* L_9 = __this->___laterInitParam_4; NullCheck(L_9); bool L_10 = L_9->___useAsync_0; if (!L_10) { goto IL_005d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65537)); L_11->___chars_0 = L_12; Il2CppCodeGenWriteBarrier((void**)(&L_11->___chars_0), (void*)L_12); goto IL_0072; } IL_005d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)4097)); L_13->___chars_0 = L_14; Il2CppCodeGenWriteBarrier((void**)(&L_13->___chars_0), (void*)L_14); } IL_0072: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_16; L_16 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); L_15->___encoding_3 = L_16; Il2CppCodeGenWriteBarrier((void**)(&L_15->___encoding_3), (void*)L_16); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); bool L_18 = __this->___normalize_24; L_17->___eolNormalized_19 = (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); L_19->___appendMode_4 = (bool)1; int32_t L_20; L_20 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::InitStringInput(System.String,System.Text.Encoding,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUriStr0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___originalEncoding1, String_t* ___str2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); String_t* L_1 = ___baseUriStr0; L_0->___baseUriStr_13 = L_1; Il2CppCodeGenWriteBarrier((void**)(&L_0->___baseUriStr_13), (void*)L_1); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); L_2->___baseUri_14 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_2->___baseUri_14), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL); String_t* L_3 = ___str2; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); V_0 = L_4; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_6, 1))); L_5->___chars_0 = L_7; Il2CppCodeGenWriteBarrier((void**)(&L_5->___chars_0), (void*)L_7); String_t* L_8 = ___str2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = L_9->___chars_0; String_t* L_11 = ___str2; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); NullCheck(L_8); String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_8, 0, L_10, 0, L_12, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = V_0; L_13->___charsUsed_2 = L_14; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = L_15->___chars_0; int32_t L_17 = V_0; NullCheck(L_16); (L_16)->SetAt(static_cast(L_17), (Il2CppChar)0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_18 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ___originalEncoding1; L_18->___encoding_3 = L_19; Il2CppCodeGenWriteBarrier((void**)(&L_18->___encoding_3), (void*)L_19); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); bool L_21 = __this->___normalize_24; L_20->___eolNormalized_19 = (bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); L_22->___isEof_15 = (bool)1; return; } } // System.Void System.Xml.XmlTextReaderImpl::InitFragmentReader(System.Xml.XmlNodeType,System.Xml.XmlParserContext,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InitFragmentReader_m7217F1675D53546B28937C06DA1B6DBB3D8B83BD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___fragmentType0, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___parserContext1, bool ___allowXmlDeclFragment2, 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*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D96BC4C9C4D627F523AF7B934DE107E1359C50F); s_Il2CppMethodInitialized = true; } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_0 = ___parserContext1; __this->___fragmentParserContext_47 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___fragmentParserContext_47), (void*)L_0); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_1 = ___parserContext1; if (!L_1) { goto IL_0090; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_2 = ___parserContext1; NullCheck(L_2); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_3; L_3 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_2, NULL); if (!L_3) { goto IL_003e; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_4 = ___parserContext1; NullCheck(L_4); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_5; L_5 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_4, NULL); __this->___namespaceManager_38 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_5); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_6 = __this->___xmlContext_40; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_7 = __this->___namespaceManager_38; String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_7); String_t* L_9; L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_7, L_8); NullCheck(L_6); L_6->___defaultNamespace_2 = L_9; Il2CppCodeGenWriteBarrier((void**)(&L_6->___defaultNamespace_2), (void*)L_9); goto IL_004f; } IL_003e: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10 = __this->___nameTable_20; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_11 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_11); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_11, L_10, NULL); __this->___namespaceManager_38 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_11); } IL_004f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_13 = ___parserContext1; NullCheck(L_13); String_t* L_14; L_14 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_13, NULL); L_12->___baseUriStr_13 = L_14; Il2CppCodeGenWriteBarrier((void**)(&L_12->___baseUriStr_13), (void*)L_14); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); L_15->___baseUri_14 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_15->___baseUri_14), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_16 = __this->___xmlContext_40; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_17 = ___parserContext1; NullCheck(L_17); String_t* L_18; L_18 = XmlParserContext_get_XmlLang_m15AAD2E5AA247235638A436E68596B9A89BFE443_inline(L_17, NULL); NullCheck(L_16); L_16->___xmlLang_1 = L_18; Il2CppCodeGenWriteBarrier((void**)(&L_16->___xmlLang_1), (void*)L_18); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_19 = __this->___xmlContext_40; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_20 = ___parserContext1; NullCheck(L_20); int32_t L_21; L_21 = XmlParserContext_get_XmlSpace_m52BE2428971EFFCBE9922F1B37FEEE9940AF1891_inline(L_20, NULL); NullCheck(L_19); L_19->___xmlSpace_0 = L_21; goto IL_00bd; } IL_0090: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22 = __this->___nameTable_20; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_23 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_23); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_23, L_22, NULL); __this->___namespaceManager_38 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_23); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; L_24->___baseUriStr_13 = L_25; Il2CppCodeGenWriteBarrier((void**)(&L_24->___baseUriStr_13), (void*)L_25); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); L_26->___baseUri_14 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_26->___baseUri_14), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL); } IL_00bd: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_27 = (&__this->___ps_6); String_t* L_28 = L_27->___baseUriStr_13; __this->___reportedBaseUri_43 = L_28; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_28); int32_t L_29 = ___fragmentType0; if ((((int32_t)L_29) > ((int32_t)2))) { goto IL_00dc; } } { int32_t L_30 = ___fragmentType0; if ((((int32_t)L_30) == ((int32_t)1))) { goto IL_0105; } } { int32_t L_31 = ___fragmentType0; if ((((int32_t)L_31) == ((int32_t)2))) { goto IL_00e8; } } { goto IL_012e; } IL_00dc: { int32_t L_32 = ___fragmentType0; if ((((int32_t)L_32) == ((int32_t)((int32_t)9)))) { goto IL_0147; } } { int32_t L_33 = ___fragmentType0; if ((((int32_t)L_33) == ((int32_t)((int32_t)17)))) { goto IL_010e; } } { goto IL_012e; } IL_00e8: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); L_34->___appendMode_4 = (bool)0; __this->___parsingFunction_7 = 3; __this->___nextParsingFunction_8 = ((int32_t)15); goto IL_0147; } IL_0105: { __this->___nextParsingFunction_8 = 5; goto IL_0147; } IL_010e: { bool L_35 = ___allowXmlDeclFragment2; if (!L_35) { goto IL_012e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_36 = (&__this->___ps_6); L_36->___appendMode_4 = (bool)0; __this->___parsingFunction_7 = 3; __this->___nextParsingFunction_8 = ((int32_t)19); goto IL_0147; } IL_012e: { Il2CppFakeBox L_37(XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var, (&___fragmentType0)); String_t* L_38; L_38 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_37), NULL); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteral8D96BC4C9C4D627F523AF7B934DE107E1359C50F, L_38, NULL); return; } IL_0147: { int32_t L_39 = ___fragmentType0; __this->___fragmentType_46 = L_39; __this->___fragment_48 = (bool)1; return; } } // System.Void System.Xml.XmlTextReaderImpl::ProcessDtdFromParserContext(System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ProcessDtdFromParserContext_mC5462F0B3774A760B0F2D7419A97D289D002DD96 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral982749A67A420D262D8B02D1D5E75C097587CD3A); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->___dtdProcessing_27; V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_001a; } case 1: { goto IL_002c; } case 2: { goto IL_0026; } } } { return; } IL_001a: { XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E(__this, _stringLiteral982749A67A420D262D8B02D1D5E75C097587CD3A, NULL); return; } IL_0026: { XmlTextReaderImpl_ParseDtdFromParserContext_mCDAFBB67C6485B9F431088A095F8DEC3A3224148(__this, NULL); } IL_002c: { return; } } // System.Void System.Xml.XmlTextReaderImpl::OpenUrl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OpenUrl_m0BF6C0850B8AD63E0DEDA911664D51C59A8FD480 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7EBD7E5381F20CF05FF54841BB8BD75F2397E0CA); s_Il2CppMethodInitialized = true; } XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0; L_0 = XmlTextReaderImpl_GetTempResolver_mD25BCDBDD60AA6555E5ED5324181C1C6BD046A4F(__this, NULL); V_0 = L_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = L_1->___baseUri_14; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_3; L_3 = Uri_op_Inequality_mC32A3382EF16D80BF39005BDD2AB452203D76D6E(L_2, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (L_3) { goto IL_004d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_5 = V_0; String_t* L_6 = __this->___url_23; NullCheck(L_5); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7; L_7 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_5, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_6); L_4->___baseUri_14 = L_7; Il2CppCodeGenWriteBarrier((void**)(&L_4->___baseUri_14), (void*)L_7); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = L_9->___baseUri_14; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); L_8->___baseUriStr_13 = L_11; Il2CppCodeGenWriteBarrier((void**)(&L_8->___baseUriStr_13), (void*)L_11); } IL_004d: { } try {// begin try (depth: 1) XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_12 = V_0; XmlTextReaderImpl_OpenUrlDelegate_m4F8AC0E3C72AB0B8B13D02160B212A0A05B6AE73(__this, L_12, NULL); goto IL_0060; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0057; } throw e; } CATCH_0057: {// begin catch(System.Object) XmlTextReaderImpl_SetErrorState_mF7EC149FBA2F8CD34A1FE144754AE2F0A6673374(__this, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_OpenUrl_m0BF6C0850B8AD63E0DEDA911664D51C59A8FD480_RuntimeMethod_var))); }// end catch (depth: 1) IL_0060: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_14 = L_13->___stream_5; if (L_14) { goto IL_0083; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); String_t* L_16 = L_15->___baseUriStr_13; XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648(__this, _stringLiteral7EBD7E5381F20CF05FF54841BB8BD75F2397E0CA, L_16, NULL); } IL_0083: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_18 = L_17->___baseUri_14; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); String_t* L_20 = L_19->___baseUriStr_13; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_21 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_22 = L_21->___stream_5; XmlTextReaderImpl_InitStreamInput_mEDB37931B1A8CE459ECFC6ED4DAFA756B5EF55A9(__this, L_18, L_20, L_22, (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_24 = L_23->___encoding_3; __this->___reportedEncoding_44 = L_24; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_24); return; } } // System.Void System.Xml.XmlTextReaderImpl::OpenUrlDelegate(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OpenUrlDelegate_m4F8AC0E3C72AB0B8B13D02160B212A0A05B6AE73 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___xmlResolver0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1; L_1 = XmlTextReaderImpl_GetTempResolver_mD25BCDBDD60AA6555E5ED5324181C1C6BD046A4F(__this, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = L_2->___baseUri_14; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_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); NullCheck(L_1); RuntimeObject* L_6; L_6 = VirtualFuncInvoker3< RuntimeObject*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t*, Type_t* >::Invoke(4 /* System.Object System.Xml.XmlResolver::GetEntity(System.Uri,System.String,System.Type) */, L_1, L_3, (String_t*)NULL, L_5); L_0->___stream_5 = ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_6, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&L_0->___stream_5), (void*)((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_6, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var))); return; } } // System.Text.Encoding System.Xml.XmlTextReaderImpl::DetectEncoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlTextReaderImpl_DetectEncoding_mE066883A6515E969053A7DA750215B11D01076A4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77F4DA4A27A2604AE091F96D9703D92D3E929C3B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB603F7761557E583DBBFB1003B4DE31A31F87868); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B5_0 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___bytesUsed_9; if ((((int32_t)L_1) >= ((int32_t)2))) { goto IL_0010; } } { return (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; } IL_0010: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = L_2->___bytes_7; NullCheck(L_3); int32_t L_4 = 0; uint8_t L_5 = (L_3)->GetAt(static_cast(L_4)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = L_6->___bytes_7; NullCheck(L_7); int32_t L_8 = 1; uint8_t L_9 = (L_7)->GetAt(static_cast(L_8)); V_0 = ((int32_t)(((int32_t)((int32_t)L_5<<8))|(int32_t)L_9)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_10 = (&__this->___ps_6); int32_t L_11 = L_10->___bytesUsed_9; if ((((int32_t)L_11) >= ((int32_t)4))) { goto IL_003f; } } { G_B5_0 = 0; goto IL_005c; } IL_003f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = L_12->___bytes_7; NullCheck(L_13); int32_t L_14 = 2; uint8_t L_15 = (L_13)->GetAt(static_cast(L_14)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = L_16->___bytes_7; NullCheck(L_17); int32_t L_18 = 3; uint8_t L_19 = (L_17)->GetAt(static_cast(L_18)); G_B5_0 = ((int32_t)(((int32_t)((int32_t)L_15<<8))|(int32_t)L_19)); } IL_005c: { V_1 = G_B5_0; int32_t L_20 = V_0; if ((((int32_t)L_20) > ((int32_t)((int32_t)15360)))) { goto IL_0080; } } { int32_t L_21 = V_0; if (!L_21) { goto IL_00b8; } } { int32_t L_22 = V_0; if ((((int32_t)L_22) == ((int32_t)((int32_t)60)))) { goto IL_012c; } } { int32_t L_23 = V_0; if ((((int32_t)L_23) == ((int32_t)((int32_t)15360)))) { goto IL_011d; } } { goto IL_016b; } IL_0080: { int32_t L_24 = V_0; if ((((int32_t)L_24) > ((int32_t)((int32_t)61371)))) { goto IL_00a3; } } { int32_t L_25 = V_0; if ((((int32_t)L_25) == ((int32_t)((int32_t)19567)))) { goto IL_013b; } } { int32_t L_26 = V_0; if ((((int32_t)L_26) == ((int32_t)((int32_t)61371)))) { goto IL_0155; } } { goto IL_016b; } IL_00a3: { int32_t L_27 = V_0; if ((((int32_t)L_27) == ((int32_t)((int32_t)65279)))) { goto IL_00ff; } } { int32_t L_28 = V_0; if ((((int32_t)L_28) == ((int32_t)((int32_t)65534)))) { goto IL_010e; } } { goto IL_016b; } IL_00b8: { int32_t L_29 = V_1; if ((((int32_t)L_29) > ((int32_t)((int32_t)15360)))) { goto IL_00d2; } } { int32_t L_30 = V_1; if ((((int32_t)L_30) == ((int32_t)((int32_t)60)))) { goto IL_00ed; } } { int32_t L_31 = V_1; if ((((int32_t)L_31) == ((int32_t)((int32_t)15360)))) { goto IL_00f9; } } { goto IL_016b; } IL_00d2: { int32_t L_32 = V_1; if ((((int32_t)L_32) == ((int32_t)((int32_t)65279)))) { goto IL_00e7; } } { int32_t L_33 = V_1; if ((((int32_t)L_33) == ((int32_t)((int32_t)65534)))) { goto IL_00f3; } } { goto IL_016b; } IL_00e7: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_34; L_34 = Ucs4Encoding_get_UCS4_Bigendian_m0E97A4F558200F5EBC6145B921BCCC5403331EEA(NULL); return L_34; } IL_00ed: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_35; L_35 = Ucs4Encoding_get_UCS4_Bigendian_m0E97A4F558200F5EBC6145B921BCCC5403331EEA(NULL); return L_35; } IL_00f3: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_36; L_36 = Ucs4Encoding_get_UCS4_2143_m0710B16D7E07408001CA72F4A38F716503404D6E(NULL); return L_36; } IL_00f9: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37; L_37 = Ucs4Encoding_get_UCS4_2143_m0710B16D7E07408001CA72F4A38F716503404D6E(NULL); return L_37; } IL_00ff: { int32_t L_38 = V_1; if (L_38) { goto IL_0108; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_39; L_39 = Ucs4Encoding_get_UCS4_3412_mF9002AF9C8DDCD0536D55369322D6AB0E0DF7CDA(NULL); return L_39; } IL_0108: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40; L_40 = Encoding_get_BigEndianUnicode_mEBEF9F9E72D779AC741D8A3CB9E05A64F310B40A(NULL); return L_40; } IL_010e: { int32_t L_41 = V_1; if (L_41) { goto IL_0117; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_42; L_42 = Ucs4Encoding_get_UCS4_Littleendian_mE5D14C1D3E3999AB18A07E4325BE96DDE29B356F(NULL); return L_42; } IL_0117: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_43; L_43 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); return L_43; } IL_011d: { int32_t L_44 = V_1; if (L_44) { goto IL_0126; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_45; L_45 = Ucs4Encoding_get_UCS4_Littleendian_mE5D14C1D3E3999AB18A07E4325BE96DDE29B356F(NULL); return L_45; } IL_0126: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_46; L_46 = Encoding_get_Unicode_mD855B4C0AC2D0EF5761B90A3DF4EE245D6B17066(NULL); return L_46; } IL_012c: { int32_t L_47 = V_1; if (L_47) { goto IL_0135; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_48; L_48 = Ucs4Encoding_get_UCS4_3412_mF9002AF9C8DDCD0536D55369322D6AB0E0DF7CDA(NULL); return L_48; } IL_0135: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_49; L_49 = Encoding_get_BigEndianUnicode_mEBEF9F9E72D779AC741D8A3CB9E05A64F310B40A(NULL); return L_49; } IL_013b: { int32_t L_50 = V_1; if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)42900))))) { goto IL_016b; } } { XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteral77F4DA4A27A2604AE091F96D9703D92D3E929C3B, _stringLiteralB603F7761557E583DBBFB1003B4DE31A31F87868, NULL); goto IL_016b; } IL_0155: { int32_t L_51 = V_1; if ((!(((uint32_t)((int32_t)(L_51&((int32_t)65280)))) == ((uint32_t)((int32_t)48896))))) { goto IL_016b; } } { UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE* L_52 = (UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE*)il2cpp_codegen_object_new(UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var); NullCheck(L_52); UTF8Encoding__ctor_m128F4B4A103E718AAB699E2D64011DB13F486726(L_52, (bool)1, (bool)1, NULL); return L_52; } IL_016b: { return (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; } } // System.Void System.Xml.XmlTextReaderImpl::SetupEncoding(System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupEncoding_m470DB12F87B04FBFED1621D5931CE18E2CA2E188 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___encoding0; if (L_0) { goto IL_0024; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2; L_2 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL); L_1->___encoding_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&L_1->___encoding_3), (void*)L_2); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23* L_4 = (SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23*)il2cpp_codegen_object_new(SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var); NullCheck(L_4); SafeAsciiDecoder__ctor_m1C11CABE1F5C280D6CC096EA14C3B34F1EF2C25B(L_4, NULL); L_3->___decoder_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&L_3->___decoder_6), (void*)L_4); return; } IL_0024: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6 = ___encoding0; L_5->___encoding_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(&L_5->___encoding_3), (void*)L_6); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = L_7->___encoding_3; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_8); V_0 = L_9; String_t* L_10 = V_0; bool L_11; L_11 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_10, _stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D, NULL); if (L_11) { goto IL_005d; } } { String_t* L_12 = V_0; bool L_13; L_13 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, _stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E, NULL); if (L_13) { goto IL_006f; } } { goto IL_0081; } IL_005d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_14 = (&__this->___ps_6); UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227* L_15 = (UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227*)il2cpp_codegen_object_new(UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227_il2cpp_TypeInfo_var); NullCheck(L_15); UTF16Decoder__ctor_m3C3FEF9D965F0159125428E5ADE9EF42359B6664(L_15, (bool)0, NULL); L_14->___decoder_6 = L_15; Il2CppCodeGenWriteBarrier((void**)(&L_14->___decoder_6), (void*)L_15); return; } IL_006f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227* L_17 = (UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227*)il2cpp_codegen_object_new(UTF16Decoder_t6E147EA3BB6AEF4CFC92D6ACC7DBCF13FB101227_il2cpp_TypeInfo_var); NullCheck(L_17); UTF16Decoder__ctor_m3C3FEF9D965F0159125428E5ADE9EF42359B6664(L_17, (bool)1, NULL); L_16->___decoder_6 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_16->___decoder_6), (void*)L_17); return; } IL_0081: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_18 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ___encoding0; NullCheck(L_19); Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* L_20; L_20 = VirtualFuncInvoker0< Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* >::Invoke(31 /* System.Text.Decoder System.Text.Encoding::GetDecoder() */, L_19); L_18->___decoder_6 = L_20; Il2CppCodeGenWriteBarrier((void**)(&L_18->___decoder_6), (void*)L_20); return; } } // System.Void System.Xml.XmlTextReaderImpl::SwitchEncoding(System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SwitchEncoding_mC73EB114B2F1F732AA6417A7EB694831486B6FAA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___newEncoding0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___newEncoding0; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3 = L_2->___encoding_3; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_3); bool L_5; L_5 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_1, L_4, NULL); if (L_5) { goto IL_002f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* L_7 = L_6->___decoder_6; if (!((SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23*)IsInstClass((RuntimeObject*)L_7, SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var))) { goto IL_0057; } } IL_002f: { bool L_8 = __this->___afterResetState_68; if (L_8) { goto IL_0057; } } { XmlTextReaderImpl_UnDecodeChars_mE83A86642A1464E06F774A5570CBA45D755D3490(__this, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); L_9->___appendMode_4 = (bool)0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10 = ___newEncoding0; XmlTextReaderImpl_SetupEncoding_m470DB12F87B04FBFED1621D5931CE18E2CA2E188(__this, L_10, NULL); int32_t L_11; L_11 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); } IL_0057: { return; } } // System.Text.Encoding System.Xml.XmlTextReaderImpl::CheckEncoding(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlTextReaderImpl_CheckEncoding_m7D6146C702DCAB1A529AF7048F9F3CB4A9357DDB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___newEncodingName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A03FF5EFAA03F04AAF57CFC6DCE17560E6F3030); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC79B5A2B53BE125CE49A7A44CDB786AE5BA7E9D1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF93620B79D24EBDD0BBA22E51773F74952724C63); s_Il2CppMethodInitialized = true; } Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL; NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* V_1 = NULL; ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = L_0->___stream_5; if (L_1) { goto IL_0019; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3 = L_2->___encoding_3; return L_3; } IL_0019: { String_t* L_4 = ___newEncodingName0; int32_t L_5; L_5 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_4, _stringLiteralC79B5A2B53BE125CE49A7A44CDB786AE5BA7E9D1, 5, NULL); if (!L_5) { goto IL_0051; } } { String_t* L_6 = ___newEncodingName0; int32_t L_7; L_7 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_6, _stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D, 5, NULL); if (!L_7) { goto IL_0051; } } { String_t* L_8 = ___newEncodingName0; int32_t L_9; L_9 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_8, _stringLiteral7A03FF5EFAA03F04AAF57CFC6DCE17560E6F3030, 5, NULL); if (!L_9) { goto IL_0051; } } { String_t* L_10 = ___newEncodingName0; int32_t L_11; L_11 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_10, _stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F, 5, NULL); if (L_11) { goto IL_00c4; } } IL_0051: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_13 = L_12->___encoding_3; NullCheck(L_13); String_t* L_14; L_14 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_13); bool L_15; L_15 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_14, _stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E, NULL); if (!L_15) { goto IL_00b8; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_17 = L_16->___encoding_3; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_17); bool L_19; L_19 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_18, _stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D, NULL); if (!L_19) { goto IL_00b8; } } { String_t* L_20 = ___newEncodingName0; int32_t L_21; L_21 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_20, _stringLiteral7326AE41E617D7A8987EBD38608EC2CA31940C0F, 5, NULL); if (!L_21) { goto IL_00b8; } } { bool L_22 = __this->___afterResetState_68; if (!L_22) { goto IL_00ad; } } { String_t* L_23 = ___newEncodingName0; XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD, L_23, NULL); goto IL_00b8; } IL_00ad: { XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E(__this, _stringLiteralF93620B79D24EBDD0BBA22E51773F74952724C63, NULL); } IL_00b8: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_25 = L_24->___encoding_3; return L_25; } IL_00c4: { V_0 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; String_t* L_26 = ___newEncodingName0; int32_t L_27; L_27 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_26, _stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9, 5, NULL); if (L_27) { goto IL_00de; } } { UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE* L_28 = (UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE*)il2cpp_codegen_object_new(UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var); NullCheck(L_28); UTF8Encoding__ctor_m128F4B4A103E718AAB699E2D64011DB13F486726(L_28, (bool)1, (bool)1, NULL); V_0 = L_28; goto IL_0108; } IL_00de: { } try {// begin try (depth: 1) String_t* L_29 = ___newEncodingName0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_30; L_30 = Encoding_GetEncoding_mBF5A2BA804B4917644BBEC5A4230D0854236D8FE(L_29, NULL); V_0 = L_30; goto IL_0108; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00e8; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00f8; } throw e; } CATCH_00e8: {// begin catch(System.NotSupportedException) V_1 = ((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)); String_t* L_31 = ___newEncodingName0; NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_32 = V_1; XmlTextReaderImpl_Throw_m04508E40E7C3D09720FCE5018406D8E4AFE9ABAD(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77F4DA4A27A2604AE091F96D9703D92D3E929C3B)), L_31, L_32, NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0108; }// end catch (depth: 1) CATCH_00f8: {// begin catch(System.ArgumentException) V_2 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); String_t* L_33 = ___newEncodingName0; ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_34 = V_2; XmlTextReaderImpl_Throw_m04508E40E7C3D09720FCE5018406D8E4AFE9ABAD(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77F4DA4A27A2604AE091F96D9703D92D3E929C3B)), L_33, L_34, NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0108; }// end catch (depth: 1) IL_0108: { bool L_35 = __this->___afterResetState_68; if (!L_35) { goto IL_0139; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_36 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = L_36->___encoding_3; NullCheck(L_37); String_t* L_38; L_38 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_37); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_39 = V_0; NullCheck(L_39); String_t* L_40; L_40 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_39); bool L_41; L_41 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_38, L_40, NULL); if (!L_41) { goto IL_0139; } } { String_t* L_42 = ___newEncodingName0; XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD, L_42, NULL); } IL_0139: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_43 = V_0; return L_43; } } // System.Void System.Xml.XmlTextReaderImpl::UnDecodeChars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_UnDecodeChars_mE83A86642A1464E06F774A5570CBA45D755D3490 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->___maxCharactersInDocument_35; if ((((int64_t)L_0) <= ((int64_t)((int64_t)0)))) { goto IL_002f; } } { int64_t L_1 = __this->___charactersInDocument_71; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5 = L_4->___charPos_1; __this->___charactersInDocument_71 = ((int64_t)il2cpp_codegen_subtract(L_1, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_3, L_5))))); } IL_002f: { int64_t L_6 = __this->___maxCharactersFromEntities_36; if ((((int64_t)L_6) <= ((int64_t)((int64_t)0)))) { goto IL_0066; } } { bool L_7; L_7 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); if (!L_7) { goto IL_0066; } } { int64_t L_8 = __this->___charactersFromEntities_72; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = L_9->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); int32_t L_12 = L_11->___charPos_1; __this->___charactersFromEntities_72 = ((int64_t)il2cpp_codegen_subtract(L_8, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_10, L_12))))); } IL_0066: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = __this->___documentStartBytePos_69; L_13->___bytePos_8 = L_14; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16 = L_15->___charPos_1; if ((((int32_t)L_16) <= ((int32_t)0))) { goto IL_00bb; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t* L_18 = (&L_17->___bytePos_8); int32_t* L_19 = L_18; int32_t L_20 = *((int32_t*)L_19); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_21 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_22 = L_21->___encoding_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = L_23->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); int32_t L_26 = L_25->___charPos_1; NullCheck(L_22); int32_t L_27; L_27 = VirtualFuncInvoker3< int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char[],System.Int32,System.Int32) */, L_22, L_24, 0, L_26); *((int32_t*)L_19) = (int32_t)((int32_t)il2cpp_codegen_add(L_20, L_27)); } IL_00bb: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_28 = (&__this->___ps_6); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); int32_t L_30 = L_29->___charPos_1; L_28->___charsUsed_2 = L_30; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); L_31->___isEof_15 = (bool)0; return; } } // System.Void System.Xml.XmlTextReaderImpl::SwitchEncodingToUTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SwitchEncodingToUTF8_m0D0BF3FCAF9BAC54D7631A62F6CAE59F58F55F38 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE* L_0 = (UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE*)il2cpp_codegen_object_new(UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var); NullCheck(L_0); UTF8Encoding__ctor_m128F4B4A103E718AAB699E2D64011DB13F486726(L_0, (bool)1, (bool)1, NULL); XmlTextReaderImpl_SwitchEncoding_mC73EB114B2F1F732AA6417A7EB694831486B6FAA(__this, L_0, NULL); return; } } // System.Int32 System.Xml.XmlTextReaderImpl::ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; int32_t V_2 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_7 = NULL; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); bool L_1 = L_0->___isEof_15; if (!L_1) { goto IL_000f; } } { return 0; } IL_000f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); bool L_3 = L_2->___appendMode_4; if (!L_3) { goto IL_0151; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5 = L_4->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = L_6->___chars_0; NullCheck(L_7); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), 1)))))) { goto IL_00a3; } } { V_2 = 0; goto IL_0059; } IL_003f: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_8 = __this->___nodes_10; int32_t L_9 = __this->___index_12; int32_t L_10 = V_2; NullCheck(L_8); int32_t L_11 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_9, L_10)), 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = (L_8)->GetAt(static_cast(L_11)); NullCheck(L_12); NodeData_OnBufferInvalidated_m23EB9F4229B6FB92ED6C586B75EFE146D979A7D2(L_12, NULL); int32_t L_13 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_13, 1)); } IL_0059: { int32_t L_14 = V_2; int32_t L_15 = __this->___attrCount_14; if ((((int32_t)L_14) < ((int32_t)L_15))) { goto IL_003f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = L_16->___chars_0; NullCheck(L_17); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_17)->max_length)), 2))); V_1 = L_18; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = L_19->___chars_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = L_22->___chars_0; NullCheck(L_23); XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441(L_20, 0, L_21, 0, ((int32_t)(((RuntimeArray*)L_23)->max_length)), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = V_1; L_24->___chars_0 = L_25; Il2CppCodeGenWriteBarrier((void**)(&L_24->___chars_0), (void*)L_25); } IL_00a3: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_27 = L_26->___stream_5; if (!L_27) { goto IL_0125; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_28 = (&__this->___ps_6); int32_t L_29 = L_28->___bytesUsed_9; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_30 = (&__this->___ps_6); int32_t L_31 = L_30->___bytePos_8; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_29, L_31))) >= ((int32_t)6))) { goto IL_0125; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_32 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = L_32->___bytes_7; NullCheck(L_33); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); int32_t L_35 = L_34->___bytesUsed_9; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_33)->max_length)), L_35))) >= ((int32_t)6))) { goto IL_0125; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_36 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = L_36->___bytes_7; NullCheck(L_37); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_38 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_37)->max_length)), 2))); V_3 = L_38; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_39 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_40 = L_39->___bytes_7; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = V_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_42 = (&__this->___ps_6); int32_t L_43 = L_42->___bytesUsed_9; XmlTextReaderImpl_BlockCopy_mA73F788AFF2A8BA4D73F707BBB88A23C21D70854(L_40, 0, L_41, 0, L_43, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_44 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_45 = V_3; L_44->___bytes_7 = L_45; Il2CppCodeGenWriteBarrier((void**)(&L_44->___bytes_7), (void*)L_45); } IL_0125: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_46 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = L_46->___chars_0; NullCheck(L_47); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_48 = (&__this->___ps_6); int32_t L_49 = L_48->___charsUsed_2; V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_47)->max_length)), L_49)), 1)); int32_t L_50 = V_0; if ((((int32_t)L_50) <= ((int32_t)((int32_t)80)))) { goto IL_0312; } } { V_0 = ((int32_t)80); goto IL_0312; } IL_0151: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_51 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_52 = L_51->___chars_0; NullCheck(L_52); V_4 = ((int32_t)(((RuntimeArray*)L_52)->max_length)); int32_t L_53 = V_4; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); int32_t L_55 = L_54->___charsUsed_2; int32_t L_56 = V_4; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_53, L_55))) > ((int32_t)((int32_t)(L_56/2))))) { goto IL_0273; } } { V_6 = 0; goto IL_0199; } IL_017c: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_57 = __this->___nodes_10; int32_t L_58 = __this->___index_12; int32_t L_59 = V_6; NullCheck(L_57); int32_t L_60 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_58, L_59)), 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_61 = (L_57)->GetAt(static_cast(L_60)); NullCheck(L_61); NodeData_OnBufferInvalidated_m23EB9F4229B6FB92ED6C586B75EFE146D979A7D2(L_61, NULL); int32_t L_62 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_62, 1)); } IL_0199: { int32_t L_63 = V_6; int32_t L_64 = __this->___attrCount_14; if ((((int32_t)L_63) < ((int32_t)L_64))) { goto IL_017c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_65 = (&__this->___ps_6); int32_t L_66 = L_65->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_67 = (&__this->___ps_6); int32_t L_68 = L_67->___charPos_1; V_5 = ((int32_t)il2cpp_codegen_subtract(L_66, L_68)); int32_t L_69 = V_5; int32_t L_70 = V_4; if ((((int32_t)L_69) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_70, 1))))) { goto IL_022f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_71 = (&__this->___ps_6); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_72 = (&__this->___ps_6); int32_t L_73 = L_72->___lineStartPos_12; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_74 = (&__this->___ps_6); int32_t L_75 = L_74->___charPos_1; L_71->___lineStartPos_12 = ((int32_t)il2cpp_codegen_subtract(L_73, L_75)); int32_t L_76 = V_5; if ((((int32_t)L_76) <= ((int32_t)0))) { goto IL_0214; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_77 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_78 = L_77->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_79 = (&__this->___ps_6); int32_t L_80 = L_79->___charPos_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_81 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_82 = L_81->___chars_0; int32_t L_83 = V_5; XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441(L_78, L_80, L_82, 0, L_83, NULL); } IL_0214: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_84 = (&__this->___ps_6); L_84->___charPos_1 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_85 = (&__this->___ps_6); int32_t L_86 = V_5; L_85->___charsUsed_2 = L_86; goto IL_0273; } IL_022f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_87 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_88 = L_87->___chars_0; NullCheck(L_88); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_89 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_88)->max_length)), 2))); V_7 = L_89; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_90 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_91 = L_90->___chars_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_92 = V_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_93 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_94 = L_93->___chars_0; NullCheck(L_94); XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441(L_91, 0, L_92, 0, ((int32_t)(((RuntimeArray*)L_94)->max_length)), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_95 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_96 = V_7; L_95->___chars_0 = L_96; Il2CppCodeGenWriteBarrier((void**)(&L_95->___chars_0), (void*)L_96); } IL_0273: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_97 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_98 = L_97->___stream_5; if (!L_98) { goto IL_02f6; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_99 = (&__this->___ps_6); int32_t L_100 = L_99->___bytesUsed_9; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_101 = (&__this->___ps_6); int32_t L_102 = L_101->___bytePos_8; V_8 = ((int32_t)il2cpp_codegen_subtract(L_100, L_102)); int32_t L_103 = V_8; if ((((int32_t)L_103) > ((int32_t)((int32_t)128)))) { goto IL_02f6; } } { int32_t L_104 = V_8; if (L_104) { goto IL_02b4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_105 = (&__this->___ps_6); L_105->___bytesUsed_9 = 0; goto IL_02ea; } IL_02b4: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_106 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_107 = L_106->___bytes_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_108 = (&__this->___ps_6); int32_t L_109 = L_108->___bytePos_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_110 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_111 = L_110->___bytes_7; int32_t L_112 = V_8; XmlTextReaderImpl_BlockCopy_mA73F788AFF2A8BA4D73F707BBB88A23C21D70854(L_107, L_109, L_111, 0, L_112, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_113 = (&__this->___ps_6); int32_t L_114 = V_8; L_113->___bytesUsed_9 = L_114; } IL_02ea: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_115 = (&__this->___ps_6); L_115->___bytePos_8 = 0; } IL_02f6: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_116 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_117 = L_116->___chars_0; NullCheck(L_117); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_118 = (&__this->___ps_6); int32_t L_119 = L_118->___charsUsed_2; V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_117)->max_length)), L_119)), 1)); } IL_0312: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_120 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_121 = L_120->___stream_5; if (!L_121) { goto IL_03f6; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_122 = (&__this->___ps_6); bool L_123 = L_122->___isStreamEof_16; if (L_123) { goto IL_03c8; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_124 = (&__this->___ps_6); int32_t L_125 = L_124->___bytePos_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_126 = (&__this->___ps_6); int32_t L_127 = L_126->___bytesUsed_9; if ((!(((uint32_t)L_125) == ((uint32_t)L_127)))) { goto IL_03c8; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_128 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = L_128->___bytes_7; NullCheck(L_129); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_130 = (&__this->___ps_6); int32_t L_131 = L_130->___bytesUsed_9; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_129)->max_length)), L_131))) <= ((int32_t)0))) { goto IL_03c8; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_132 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_133 = L_132->___stream_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_134 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_135 = L_134->___bytes_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_136 = (&__this->___ps_6); int32_t L_137 = L_136->___bytesUsed_9; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_138 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_139 = L_138->___bytes_7; NullCheck(L_139); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_140 = (&__this->___ps_6); int32_t L_141 = L_140->___bytesUsed_9; NullCheck(L_133); int32_t L_142; L_142 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_133, L_135, L_137, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_139)->max_length)), L_141))); V_10 = L_142; int32_t L_143 = V_10; if (L_143) { goto IL_03b7; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_144 = (&__this->___ps_6); L_144->___isStreamEof_16 = (bool)1; } IL_03b7: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_145 = (&__this->___ps_6); int32_t* L_146 = (&L_145->___bytesUsed_9); int32_t* L_147 = L_146; int32_t L_148 = *((int32_t*)L_147); int32_t L_149 = V_10; *((int32_t*)L_147) = (int32_t)((int32_t)il2cpp_codegen_add(L_148, L_149)); } IL_03c8: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_150 = (&__this->___ps_6); int32_t L_151 = L_150->___bytePos_8; V_9 = L_151; int32_t L_152 = V_0; int32_t L_153; L_153 = XmlTextReaderImpl_GetChars_m0551EFA549AFF2773F1422C35BFD60576D58E1E6(__this, L_152, NULL); V_0 = L_153; int32_t L_154 = V_0; if (L_154) { goto IL_0459; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_155 = (&__this->___ps_6); int32_t L_156 = L_155->___bytePos_8; int32_t L_157 = V_9; if ((((int32_t)L_156) == ((int32_t)L_157))) { goto IL_0459; } } { int32_t L_158; L_158 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); return L_158; } IL_03f6: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_159 = (&__this->___ps_6); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_160 = L_159->___textReader_10; if (!L_160) { goto IL_0457; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_161 = (&__this->___ps_6); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_162 = L_161->___textReader_10; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_163 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_164 = L_163->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_165 = (&__this->___ps_6); int32_t L_166 = L_165->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_167 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_168 = L_167->___chars_0; NullCheck(L_168); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_169 = (&__this->___ps_6); int32_t L_170 = L_169->___charsUsed_2; NullCheck(L_162); int32_t L_171; L_171 = VirtualFuncInvoker3< int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(11 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, L_162, L_164, L_166, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_168)->max_length)), L_170)), 1))); V_0 = L_171; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_172 = (&__this->___ps_6); int32_t* L_173 = (&L_172->___charsUsed_2); int32_t* L_174 = L_173; int32_t L_175 = *((int32_t*)L_174); int32_t L_176 = V_0; *((int32_t*)L_174) = (int32_t)((int32_t)il2cpp_codegen_add(L_175, L_176)); goto IL_0459; } IL_0457: { V_0 = 0; } IL_0459: { int32_t L_177 = V_0; bool L_178; L_178 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); XmlTextReaderImpl_RegisterConsumedCharacters_mC93EC992AB264BC7A08D193CEB0A87806E799D68(__this, ((int64_t)L_177), L_178, NULL); int32_t L_179 = V_0; if (L_179) { goto IL_0476; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_180 = (&__this->___ps_6); L_180->___isEof_15 = (bool)1; } IL_0476: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_181 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_182 = L_181->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_183 = (&__this->___ps_6); int32_t L_184 = L_183->___charsUsed_2; NullCheck(L_182); (L_182)->SetAt(static_cast(L_184), (Il2CppChar)0); int32_t L_185 = V_0; return L_185; } } // System.Int32 System.Xml.XmlTextReaderImpl::GetChars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetChars_m0551EFA549AFF2773F1422C35BFD60576D58E1E6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___maxCharsCount0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___bytesUsed_9; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___bytePos_8; V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, L_3)); int32_t L_4 = V_0; if (L_4) { goto IL_001d; } } { return 0; } IL_001d: { } try {// begin try (depth: 1) ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* L_6 = L_5->___decoder_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_7->___bytes_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = L_9->___bytePos_8; int32_t L_11 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = L_12->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_14 = (&__this->___ps_6); int32_t L_15 = L_14->___charsUsed_2; int32_t L_16 = ___maxCharsCount0; NullCheck(L_6); VirtualActionInvoker10< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t, bool, int32_t*, int32_t*, bool* >::Invoke(12 /* System.Void System.Text.Decoder::Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) */, L_6, L_8, L_10, L_11, L_13, L_15, L_16, (bool)0, (&V_0), (&V_1), (&V_2)); goto IL_0072; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0065; } throw e; } CATCH_0065: {// begin catch(System.ArgumentException) XmlTextReaderImpl_InvalidCharRecovery_m7B340492710F3E4221E1D82062C2512EA2497466(__this, (&V_0), (&V_1), NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0072; }// end catch (depth: 1) IL_0072: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t* L_18 = (&L_17->___bytePos_8); int32_t* L_19 = L_18; int32_t L_20 = *((int32_t*)L_19); int32_t L_21 = V_0; *((int32_t*)L_19) = (int32_t)((int32_t)il2cpp_codegen_add(L_20, L_21)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); int32_t* L_23 = (&L_22->___charsUsed_2); int32_t* L_24 = L_23; int32_t L_25 = *((int32_t*)L_24); int32_t L_26 = V_1; *((int32_t*)L_24) = (int32_t)((int32_t)il2cpp_codegen_add(L_25, L_26)); int32_t L_27 = V_1; return L_27; } } // System.Void System.Xml.XmlTextReaderImpl::InvalidCharRecovery(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_InvalidCharRecovery_m7B340492710F3E4221E1D82062C2512EA2497466 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___bytesCount0, int32_t* ___charsCount1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; bool V_4 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; { V_0 = 0; V_1 = 0; } try {// begin try (depth: 1) { goto IL_0057_1; } IL_0006_1: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* L_1 = L_0->___decoder_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = L_2->___bytes_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5 = L_4->___bytePos_8; int32_t L_6 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = L_7->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = L_9->___charsUsed_2; int32_t L_11 = V_0; NullCheck(L_1); VirtualActionInvoker10< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t, bool, int32_t*, int32_t*, bool* >::Invoke(12 /* System.Void System.Text.Decoder::Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32&,System.Int32&,System.Boolean&) */, L_1, L_3, ((int32_t)il2cpp_codegen_add(L_5, L_6)), 1, L_8, ((int32_t)il2cpp_codegen_add(L_10, L_11)), 1, (bool)0, (&V_3), (&V_2), (&V_4)); int32_t L_12 = V_0; int32_t L_13 = V_2; V_0 = ((int32_t)il2cpp_codegen_add(L_12, L_13)); int32_t L_14 = V_1; int32_t L_15 = V_3; V_1 = ((int32_t)il2cpp_codegen_add(L_14, L_15)); } IL_0057_1: { int32_t L_16 = V_1; int32_t* L_17 = ___bytesCount0; int32_t L_18 = *((int32_t*)L_17); if ((((int32_t)L_16) < ((int32_t)L_18))) { goto IL_0006_1; } } { goto IL_0061; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_005e; } throw e; } CATCH_005e: {// begin catch(System.ArgumentException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0061; }// end catch (depth: 1) IL_0061: { int32_t L_19 = V_0; if (L_19) { goto IL_007a; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); int32_t L_21 = L_20->___charsUsed_2; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_21, _stringLiteralEC8CAA2A3849E3D54918E4EA208FB0D055700292, NULL); } IL_007a: { int32_t* L_22 = ___charsCount1; int32_t L_23 = V_0; *((int32_t*)L_22) = (int32_t)L_23; int32_t* L_24 = ___bytesCount0; int32_t L_25 = V_1; *((int32_t*)L_24) = (int32_t)L_25; return; } } // System.Void System.Xml.XmlTextReaderImpl::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_Close_m00A023B8815072F34509D2937F878404C966F63D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___closeInput0, 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->___parsingFunction_7; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)12))))) { goto IL_0011; } } { return; } IL_000b: { XmlTextReaderImpl_PopParsingState_m6F5CF788CF5233E312DFB006D075BE7D37374D71(__this, NULL); } IL_0011: { bool L_1; L_1 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); if (L_1) { goto IL_000b; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); bool L_3 = ___closeInput0; ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008(L_2, L_3, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4; L_4 = NodeData_get_None_m09D5476D20F18D3F782AD016AA4C9B7FB91EB495(NULL); __this->___curNode_11 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_4); __this->___parsingFunction_7 = ((int32_t)12); __this->___reportedEncoding_44 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)(Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___reportedBaseUri_43 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_5); __this->___readState_66 = 4; __this->___fullAttrCleanup_18 = (bool)0; XmlTextReaderImpl_ResetAttributes_m2E88D9765B460D463079DC959DA71B940FBE014C(__this, NULL); __this->___laterInitParam_4 = (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___laterInitParam_4), (void*)(LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6*)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ShiftBuffer(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___sourcePos0, int32_t ___destPos1, int32_t ___count2, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; int32_t L_2 = ___sourcePos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3->___chars_0; int32_t L_5 = ___destPos1; int32_t L_6 = ___count2; XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441(L_1, L_2, L_4, L_5, L_6, NULL); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseXmlDeclaration(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseXmlDeclaration_mE57790EE79B349C9AA99472BA1B5DE58604660EA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___isTextDecl0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral03B045FCD10ECF188A204F5155B713E46FEAC4DE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A80D09E42ECF83939C0550908D8E7889359C8D8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA99D512DBB15CEE509B88EBCE4AB195F07681F44); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC5E32C47A7BDB12A3CFA3FAD891E5A0B2E18DE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF8B5610C2E749CDA971813F2601B7DDAF980B54); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE577106AF74D4E432DDB4785DA3B2BE486F67838); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE6EBEC5243A7F1F4EC60D6ADEFEEC1D5A655AA46); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; int32_t V_1 = 0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_6 = NULL; Il2CppChar V_7 = 0x0; int32_t V_8 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_9 = NULL; String_t* V_10 = NULL; Il2CppChar V_11 = 0x0; String_t* V_12 = NULL; String_t* V_13 = NULL; String_t* V_14 = NULL; StringBuilder_t* G_B10_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B13_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B12_0 = NULL; StringBuilder_t* G_B14_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B14_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B19_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B18_0 = NULL; String_t* G_B20_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B20_1 = NULL; String_t* G_B33_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B33_1 = NULL; String_t* G_B32_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B32_1 = NULL; String_t* G_B34_0 = NULL; String_t* G_B34_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B34_2 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B67_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B66_0 = NULL; String_t* G_B68_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B68_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B110_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B109_0 = NULL; String_t* G_B111_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B111_1 = NULL; String_t* G_B124_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B124_1 = NULL; String_t* G_B123_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B123_1 = NULL; String_t* G_B125_0 = NULL; String_t* G_B125_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B125_2 = NULL; { goto IL_000d; } IL_0002: { int32_t L_0; L_0 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (!L_0) { goto IL_07e0; } } IL_000d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); int32_t L_2 = L_1->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4 = L_3->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_4))) < ((int32_t)6))) { goto IL_0002; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = L_5->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8 = L_7->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_9; L_9 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_6, L_8, 5, _stringLiteral1A80D09E42ECF83939C0550908D8E7889359C8D8, NULL); if (!L_9) { goto IL_07e0; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_10 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = L_11->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = L_13->___charPos_1; NullCheck(L_12); int32_t L_15 = ((int32_t)il2cpp_codegen_add(L_14, 5)); uint16_t L_16 = (uint16_t)(L_12)->GetAt(static_cast(L_15)); bool L_17; L_17 = XmlCharType_IsNameSingleChar_mA5C27AEE5BABB098031EA8BE197F9E2E63F0478A(L_10, L_16, NULL); if (L_17) { goto IL_07e0; } } { bool L_18 = ___isTextDecl0; if (L_18) { goto IL_00af; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); int32_t L_21; L_21 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_20, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); int32_t L_23; L_23 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_22, NULL); NullCheck(L_19); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_19, L_21, ((int32_t)il2cpp_codegen_add(L_23, 2)), NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_24 = __this->___curNode_11; String_t* L_25 = __this->___Xml_77; NullCheck(L_24); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_24, ((int32_t)17), L_25, NULL); } IL_00af: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); int32_t* L_27 = (&L_26->___charPos_1); int32_t* L_28 = L_27; int32_t L_29 = *((int32_t*)L_28); *((int32_t*)L_28) = (int32_t)((int32_t)il2cpp_codegen_add(L_29, 5)); bool L_30 = ___isTextDecl0; if (L_30) { goto IL_00ca; } } { StringBuilder_t* L_31 = __this->___stringBuilder_61; G_B10_0 = L_31; goto IL_00cf; } IL_00ca: { StringBuilder_t* L_32 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_32); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_32, NULL); G_B10_0 = L_32; } IL_00cf: { V_0 = G_B10_0; V_1 = 0; V_2 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; } IL_00d4: { StringBuilder_t* L_33 = V_0; NullCheck(L_33); int32_t L_34; L_34 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_33, NULL); V_3 = L_34; int32_t L_35 = V_1; G_B12_0 = __this; if (!L_35) { G_B13_0 = __this; goto IL_00e2; } } { StringBuilder_t* L_36 = V_0; G_B14_0 = L_36; G_B14_1 = G_B12_0; goto IL_00e3; } IL_00e2: { G_B14_0 = ((StringBuilder_t*)(NULL)); G_B14_1 = G_B13_0; } IL_00e3: { NullCheck(G_B14_1); int32_t L_37; L_37 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(G_B14_1, G_B14_0, NULL); V_4 = L_37; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_38 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = L_38->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_40 = (&__this->___ps_6); int32_t L_41 = L_40->___charPos_1; NullCheck(L_39); int32_t L_42 = L_41; uint16_t L_43 = (uint16_t)(L_39)->GetAt(static_cast(L_42)); if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)63))))) { goto IL_0276; } } { StringBuilder_t* L_44 = V_0; int32_t L_45 = V_3; NullCheck(L_44); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_44, L_45, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_46 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = L_46->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_48 = (&__this->___ps_6); int32_t L_49 = L_48->___charPos_1; NullCheck(L_47); int32_t L_50 = ((int32_t)il2cpp_codegen_add(L_49, 1)); uint16_t L_51 = (uint16_t)(L_47)->GetAt(static_cast(L_50)); if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)62))))) { goto IL_024e; } } { int32_t L_52 = V_1; if (L_52) { goto IL_0147; } } { bool L_53 = ___isTextDecl0; G_B18_0 = __this; if (L_53) { G_B19_0 = __this; goto IL_013d; } } { G_B20_0 = _stringLiteral03B045FCD10ECF188A204F5155B713E46FEAC4DE; G_B20_1 = G_B18_0; goto IL_0142; } IL_013d: { G_B20_0 = _stringLiteralAC5E32C47A7BDB12A3CFA3FAD891E5A0B2E18DE3; G_B20_1 = G_B19_0; } IL_0142: { NullCheck(G_B20_1); XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(G_B20_1, G_B20_0, NULL); } IL_0147: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); int32_t* L_55 = (&L_54->___charPos_1); int32_t* L_56 = L_55; int32_t L_57 = *((int32_t*)L_56); *((int32_t*)L_56) = (int32_t)((int32_t)il2cpp_codegen_add(L_57, 2)); bool L_58 = ___isTextDecl0; if (L_58) { goto IL_0186; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_59 = __this->___curNode_11; 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); NullCheck(L_59); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_59, L_61, NULL); StringBuilder_t* L_62 = V_0; NullCheck(L_62); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_62, 0, NULL); int32_t L_63 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_63; __this->___parsingFunction_7 = ((int32_t)9); } IL_0186: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_64 = V_2; if (L_64) { goto IL_0239; } } { bool L_65 = ___isTextDecl0; if (!L_65) { goto IL_019a; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralAC5E32C47A7BDB12A3CFA3FAD891E5A0B2E18DE3, NULL); } IL_019a: { bool L_66 = __this->___afterResetState_68; if (!L_66) { goto IL_021f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_67 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_68 = L_67->___encoding_3; NullCheck(L_68); String_t* L_69; L_69 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_68); V_10 = L_69; String_t* L_70 = V_10; bool L_71; L_71 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_70, _stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9, NULL); if (!L_71) { goto IL_021f; } } { String_t* L_72 = V_10; bool L_73; L_73 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_72, _stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D, NULL); if (!L_73) { goto IL_021f; } } { String_t* L_74 = V_10; bool L_75; L_75 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_74, _stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E, NULL); if (!L_75) { goto IL_021f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_76 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_77 = L_76->___encoding_3; if (((Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B*)IsInstClass((RuntimeObject*)L_77, Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B_il2cpp_TypeInfo_var))) { goto IL_021f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_78 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_79 = L_78->___encoding_3; NullCheck(L_79); int32_t L_80; L_80 = VirtualFuncInvoker1< int32_t, String_t* >::Invoke(11 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_79, _stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003); G_B32_0 = _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD; G_B32_1 = __this; if ((((int32_t)L_80) == ((int32_t)1))) { G_B33_0 = _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD; G_B33_1 = __this; goto IL_0215; } } { G_B34_0 = _stringLiteralA99D512DBB15CEE509B88EBCE4AB195F07681F44; G_B34_1 = G_B32_0; G_B34_2 = G_B32_1; goto IL_021a; } IL_0215: { G_B34_0 = _stringLiteralE577106AF74D4E432DDB4785DA3B2BE486F67838; G_B34_1 = G_B33_0; G_B34_2 = G_B33_1; } IL_021a: { NullCheck(G_B34_2); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(G_B34_2, G_B34_1, G_B34_0, NULL); } IL_021f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_81 = (&__this->___ps_6); Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* L_82 = L_81->___decoder_6; if (!((SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23*)IsInstClass((RuntimeObject*)L_82, SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var))) { goto IL_0240; } } { XmlTextReaderImpl_SwitchEncodingToUTF8_m0D0BF3FCAF9BAC54D7631A62F6CAE59F58F55F38(__this, NULL); goto IL_0240; } IL_0239: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_83 = V_2; XmlTextReaderImpl_SwitchEncoding_mC73EB114B2F1F732AA6417A7EB694831486B6FAA(__this, L_83, NULL); } IL_0240: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_84 = (&__this->___ps_6); L_84->___appendMode_4 = (bool)0; return (bool)1; } IL_024e: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_85 = (&__this->___ps_6); int32_t L_86 = L_85->___charPos_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_87 = (&__this->___ps_6); int32_t L_88 = L_87->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_86, 1))) == ((int32_t)L_88))) { goto IL_07b8; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteralBF8B5610C2E749CDA971813F2601B7DDAF980B54, NULL); } IL_0276: { int32_t L_89 = V_4; if (L_89) { goto IL_0288; } } { int32_t L_90 = V_1; if (!L_90) { goto IL_0288; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB, NULL); } IL_0288: { int32_t L_91; L_91 = XmlTextReaderImpl_ParseName_m91011791BCE5AF6659C6F7710B79FC64A08D2C39(__this, NULL); V_5 = L_91; V_6 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_92 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_93 = L_92->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_94 = (&__this->___ps_6); int32_t L_95 = L_94->___charPos_1; NullCheck(L_93); int32_t L_96 = L_95; uint16_t L_97 = (uint16_t)(L_93)->GetAt(static_cast(L_96)); V_11 = L_97; Il2CppChar L_98 = V_11; if ((((int32_t)L_98) == ((int32_t)((int32_t)101)))) { goto IL_0316; } } { Il2CppChar L_99 = V_11; if ((((int32_t)L_99) == ((int32_t)((int32_t)115)))) { goto IL_0365; } } { Il2CppChar L_100 = V_11; if ((!(((uint32_t)L_100) == ((uint32_t)((int32_t)118))))) { goto IL_03b5; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_101 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_102 = L_101->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_103 = (&__this->___ps_6); int32_t L_104 = L_103->___charPos_1; int32_t L_105 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_106 = (&__this->___ps_6); int32_t L_107 = L_106->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_108; L_108 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_102, L_104, ((int32_t)il2cpp_codegen_subtract(L_105, L_107)), _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, NULL); if (!L_108) { goto IL_03b5; } } { int32_t L_109 = V_1; if (L_109) { goto IL_03b5; } } { bool L_110 = ___isTextDecl0; if (L_110) { goto IL_03ca; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_111; L_111 = XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39(__this, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, 1, NULL); V_6 = L_111; goto IL_03ca; } IL_0316: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_112 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_113 = L_112->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_114 = (&__this->___ps_6); int32_t L_115 = L_114->___charPos_1; int32_t L_116 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_117 = (&__this->___ps_6); int32_t L_118 = L_117->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_119; L_119 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_113, L_115, ((int32_t)il2cpp_codegen_subtract(L_116, L_118)), _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128, NULL); if (!L_119) { goto IL_03b5; } } { int32_t L_120 = V_1; if ((((int32_t)L_120) == ((int32_t)1))) { goto IL_0350; } } { bool L_121 = ___isTextDecl0; if (!L_121) { goto IL_03b5; } } { int32_t L_122 = V_1; if (L_122) { goto IL_03b5; } } IL_0350: { bool L_123 = ___isTextDecl0; if (L_123) { goto IL_0361; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_124; L_124 = XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39(__this, _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128, 1, NULL); V_6 = L_124; } IL_0361: { V_1 = 1; goto IL_03ca; } IL_0365: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_125 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_126 = L_125->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_127 = (&__this->___ps_6); int32_t L_128 = L_127->___charPos_1; int32_t L_129 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_130 = (&__this->___ps_6); int32_t L_131 = L_130->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_132; L_132 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_126, L_128, ((int32_t)il2cpp_codegen_subtract(L_129, L_131)), _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF, NULL); if (!L_132) { goto IL_03b5; } } { int32_t L_133 = V_1; if ((((int32_t)L_133) == ((int32_t)1))) { goto IL_039d; } } { int32_t L_134 = V_1; if ((!(((uint32_t)L_134) == ((uint32_t)2)))) { goto IL_03b5; } } IL_039d: { bool L_135 = ___isTextDecl0; if (L_135) { goto IL_03b5; } } { bool L_136 = ___isTextDecl0; if (L_136) { goto IL_03b1; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_137; L_137 = XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39(__this, _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF, 1, NULL); V_6 = L_137; } IL_03b1: { V_1 = 2; goto IL_03ca; } IL_03b5: { bool L_138 = ___isTextDecl0; G_B66_0 = __this; if (L_138) { G_B67_0 = __this; goto IL_03c0; } } { G_B68_0 = _stringLiteral03B045FCD10ECF188A204F5155B713E46FEAC4DE; G_B68_1 = G_B66_0; goto IL_03c5; } IL_03c0: { G_B68_0 = _stringLiteralAC5E32C47A7BDB12A3CFA3FAD891E5A0B2E18DE3; G_B68_1 = G_B67_0; } IL_03c5: { NullCheck(G_B68_1); XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(G_B68_1, G_B68_0, NULL); } IL_03ca: { bool L_139 = ___isTextDecl0; if (L_139) { goto IL_03ea; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_140 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_141 = (&__this->___ps_6); int32_t L_142; L_142 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_141, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_143 = (&__this->___ps_6); int32_t L_144; L_144 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_143, NULL); NullCheck(L_140); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_140, L_142, L_144, NULL); } IL_03ea: { StringBuilder_t* L_145 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_146 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_147 = L_146->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_148 = (&__this->___ps_6); int32_t L_149 = L_148->___charPos_1; int32_t L_150 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_151 = (&__this->___ps_6); int32_t L_152 = L_151->___charPos_1; NullCheck(L_145); StringBuilder_t* L_153; L_153 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_145, L_147, L_149, ((int32_t)il2cpp_codegen_subtract(L_150, L_152)), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_154 = (&__this->___ps_6); int32_t L_155 = V_5; L_154->___charPos_1 = L_155; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_156 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_157 = L_156->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_158 = (&__this->___ps_6); int32_t L_159 = L_158->___charPos_1; NullCheck(L_157); int32_t L_160 = L_159; uint16_t L_161 = (uint16_t)(L_157)->GetAt(static_cast(L_160)); if ((((int32_t)L_161) == ((int32_t)((int32_t)61)))) { goto IL_046b; } } { StringBuilder_t* L_162 = V_0; int32_t L_163; L_163 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, L_162, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_164 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_165 = L_164->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_166 = (&__this->___ps_6); int32_t L_167 = L_166->___charPos_1; NullCheck(L_165); int32_t L_168 = L_167; uint16_t L_169 = (uint16_t)(L_165)->GetAt(static_cast(L_168)); if ((((int32_t)L_169) == ((int32_t)((int32_t)61)))) { goto IL_046b; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E, NULL); } IL_046b: { StringBuilder_t* L_170 = V_0; NullCheck(L_170); StringBuilder_t* L_171; L_171 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_170, ((int32_t)61), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_172 = (&__this->___ps_6); int32_t* L_173 = (&L_172->___charPos_1); int32_t* L_174 = L_173; int32_t L_175 = *((int32_t*)L_174); *((int32_t*)L_174) = (int32_t)((int32_t)il2cpp_codegen_add(L_175, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_176 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_177 = L_176->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_178 = (&__this->___ps_6); int32_t L_179 = L_178->___charPos_1; NullCheck(L_177); int32_t L_180 = L_179; uint16_t L_181 = (uint16_t)(L_177)->GetAt(static_cast(L_180)); V_7 = L_181; Il2CppChar L_182 = V_7; if ((((int32_t)L_182) == ((int32_t)((int32_t)34)))) { goto IL_04e6; } } { Il2CppChar L_183 = V_7; if ((((int32_t)L_183) == ((int32_t)((int32_t)39)))) { goto IL_04e6; } } { StringBuilder_t* L_184 = V_0; int32_t L_185; L_185 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, L_184, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_186 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_187 = L_186->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_188 = (&__this->___ps_6); int32_t L_189 = L_188->___charPos_1; NullCheck(L_187); int32_t L_190 = L_189; uint16_t L_191 = (uint16_t)(L_187)->GetAt(static_cast(L_190)); V_7 = L_191; Il2CppChar L_192 = V_7; if ((((int32_t)L_192) == ((int32_t)((int32_t)34)))) { goto IL_04e6; } } { Il2CppChar L_193 = V_7; if ((((int32_t)L_193) == ((int32_t)((int32_t)39)))) { goto IL_04e6; } } { XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905(__this, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_04e6: { StringBuilder_t* L_194 = V_0; Il2CppChar L_195 = V_7; NullCheck(L_194); StringBuilder_t* L_196; L_196 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_194, L_195, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_197 = (&__this->___ps_6); int32_t* L_198 = (&L_197->___charPos_1); int32_t* L_199 = L_198; int32_t L_200 = *((int32_t*)L_199); *((int32_t*)L_199) = (int32_t)((int32_t)il2cpp_codegen_add(L_200, 1)); bool L_201 = ___isTextDecl0; if (L_201) { goto IL_0528; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_202 = V_6; Il2CppChar L_203 = V_7; NullCheck(L_202); L_202->___quoteChar_12 = L_203; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_204 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_205 = (&__this->___ps_6); int32_t L_206; L_206 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_205, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_207 = (&__this->___ps_6); int32_t L_208; L_208 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_207, NULL); NullCheck(L_204); NodeData_SetLineInfo2_mD0AD7BC1A4A18A10953788BC8FBE0B1A02CE26D5(L_204, L_206, L_208, NULL); } IL_0528: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_209 = (&__this->___ps_6); int32_t L_210 = L_209->___charPos_1; V_8 = L_210; } IL_0535: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_211 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_212 = L_211->___chars_0; V_9 = L_212; goto IL_054a; } IL_0544: { int32_t L_213 = V_8; V_8 = ((int32_t)il2cpp_codegen_add(L_213, 1)); } IL_054a: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_214 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_215 = L_214->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_216 = V_9; int32_t L_217 = V_8; NullCheck(L_216); int32_t L_218 = L_217; uint16_t L_219 = (uint16_t)(L_216)->GetAt(static_cast(L_218)); NullCheck(L_215); uint16_t L_220 = L_219; uint8_t L_221 = (L_215)->GetAt(static_cast(L_220)); if (((int32_t)((int32_t)L_221&((int32_t)128)))) { goto IL_0544; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_222 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_223 = L_222->___chars_0; int32_t L_224 = V_8; NullCheck(L_223); int32_t L_225 = L_224; uint16_t L_226 = (uint16_t)(L_223)->GetAt(static_cast(L_225)); Il2CppChar L_227 = V_7; if ((!(((uint32_t)L_226) == ((uint32_t)L_227)))) { goto IL_077c; } } { int32_t L_228 = V_1; switch (L_228) { case 0: { goto IL_058f; } case 1: { goto IL_0631; } case 2: { goto IL_0678; } } } { goto IL_073d; } IL_058f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_229 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_230 = L_229->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_231 = (&__this->___ps_6); int32_t L_232 = L_231->___charPos_1; int32_t L_233 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_234 = (&__this->___ps_6); int32_t L_235 = L_234->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_236; L_236 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_230, L_232, ((int32_t)il2cpp_codegen_subtract(L_233, L_235)), _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11, NULL); if (!L_236) { goto IL_05f4; } } { bool L_237 = ___isTextDecl0; if (L_237) { goto IL_05ed; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_238 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_239 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_240 = L_239->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_241 = (&__this->___ps_6); int32_t L_242 = L_241->___charPos_1; int32_t L_243 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_244 = (&__this->___ps_6); int32_t L_245 = L_244->___charPos_1; NullCheck(L_238); NodeData_SetValue_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5(L_238, L_240, L_242, ((int32_t)il2cpp_codegen_subtract(L_243, L_245)), NULL); } IL_05ed: { V_1 = 1; goto IL_073d; } IL_05f4: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_246 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_247 = L_246->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_248 = (&__this->___ps_6); int32_t L_249 = L_248->___charPos_1; int32_t L_250 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_251 = (&__this->___ps_6); int32_t L_252 = L_251->___charPos_1; String_t* L_253; L_253 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_247, L_249, ((int32_t)il2cpp_codegen_subtract(L_250, L_252)), NULL); V_13 = L_253; String_t* L_254 = V_13; XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteralE6EBEC5243A7F1F4EC60D6ADEFEEC1D5A655AA46, L_254, NULL); goto IL_073d; } IL_0631: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_255 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_256 = L_255->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_257 = (&__this->___ps_6); int32_t L_258 = L_257->___charPos_1; int32_t L_259 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_260 = (&__this->___ps_6); int32_t L_261 = L_260->___charPos_1; String_t* L_262; L_262 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_256, L_258, ((int32_t)il2cpp_codegen_subtract(L_259, L_261)), NULL); V_12 = L_262; String_t* L_263 = V_12; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_264; L_264 = XmlTextReaderImpl_CheckEncoding_m7D6146C702DCAB1A529AF7048F9F3CB4A9357DDB(__this, L_263, NULL); V_2 = L_264; bool L_265 = ___isTextDecl0; if (L_265) { goto IL_0671; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_266 = V_6; String_t* L_267 = V_12; NullCheck(L_266); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_266, L_267, NULL); } IL_0671: { V_1 = 2; goto IL_073d; } IL_0678: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_268 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_269 = L_268->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_270 = (&__this->___ps_6); int32_t L_271 = L_270->___charPos_1; int32_t L_272 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_273 = (&__this->___ps_6); int32_t L_274 = L_273->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_275; L_275 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_269, L_271, ((int32_t)il2cpp_codegen_subtract(L_272, L_274)), _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, NULL); if (!L_275) { goto IL_06b1; } } { __this->___standalone_63 = (bool)1; goto IL_070d; } IL_06b1: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_276 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_277 = L_276->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_278 = (&__this->___ps_6); int32_t L_279 = L_278->___charPos_1; int32_t L_280 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_281 = (&__this->___ps_6); int32_t L_282 = L_281->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_283; L_283 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_277, L_279, ((int32_t)il2cpp_codegen_subtract(L_280, L_282)), _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL); if (!L_283) { goto IL_06ea; } } { __this->___standalone_63 = (bool)0; goto IL_070d; } IL_06ea: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_284 = (&__this->___ps_6); int32_t L_285; L_285 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_284, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_286 = (&__this->___ps_6); int32_t L_287; L_287 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_286, NULL); XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63(__this, _stringLiteral03B045FCD10ECF188A204F5155B713E46FEAC4DE, L_285, ((int32_t)il2cpp_codegen_subtract(L_287, 1)), NULL); } IL_070d: { bool L_288 = ___isTextDecl0; if (L_288) { goto IL_073b; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_289 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_290 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_291 = L_290->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_292 = (&__this->___ps_6); int32_t L_293 = L_292->___charPos_1; int32_t L_294 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_295 = (&__this->___ps_6); int32_t L_296 = L_295->___charPos_1; NullCheck(L_289); NodeData_SetValue_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5(L_289, L_291, L_293, ((int32_t)il2cpp_codegen_subtract(L_294, L_296)), NULL); } IL_073b: { V_1 = 3; } IL_073d: { StringBuilder_t* L_297 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_298 = V_9; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_299 = (&__this->___ps_6); int32_t L_300 = L_299->___charPos_1; int32_t L_301 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_302 = (&__this->___ps_6); int32_t L_303 = L_302->___charPos_1; NullCheck(L_297); StringBuilder_t* L_304; L_304 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_297, L_298, L_300, ((int32_t)il2cpp_codegen_subtract(L_301, L_303)), NULL); StringBuilder_t* L_305 = V_0; Il2CppChar L_306 = V_7; NullCheck(L_305); StringBuilder_t* L_307; L_307 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_305, L_306, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_308 = (&__this->___ps_6); int32_t L_309 = V_8; L_308->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_309, 1)); goto IL_00d4; } IL_077c: { int32_t L_310 = V_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_311 = (&__this->___ps_6); int32_t L_312 = L_311->___charsUsed_2; if ((!(((uint32_t)L_310) == ((uint32_t)L_312)))) { goto IL_07a3; } } { int32_t L_313; L_313 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_313) { goto IL_0535; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989, NULL); goto IL_07b8; } IL_07a3: { bool L_314 = ___isTextDecl0; G_B109_0 = __this; if (L_314) { G_B110_0 = __this; goto IL_07ae; } } { G_B111_0 = _stringLiteral03B045FCD10ECF188A204F5155B713E46FEAC4DE; G_B111_1 = G_B109_0; goto IL_07b3; } IL_07ae: { G_B111_0 = _stringLiteralAC5E32C47A7BDB12A3CFA3FAD891E5A0B2E18DE3; G_B111_1 = G_B110_0; } IL_07b3: { NullCheck(G_B111_1); XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(G_B111_1, G_B111_0, NULL); } IL_07b8: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_315 = (&__this->___ps_6); bool L_316 = L_315->___isEof_15; if (L_316) { goto IL_07d0; } } { int32_t L_317; L_317 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_317) { goto IL_00d4; } } IL_07d0: { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); goto IL_00d4; } IL_07e0: { bool L_318 = ___isTextDecl0; if (L_318) { goto IL_07ef; } } { int32_t L_319 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_319; } IL_07ef: { bool L_320 = __this->___afterResetState_68; if (!L_320) { goto IL_0874; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_321 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_322 = L_321->___encoding_3; NullCheck(L_322); String_t* L_323; L_323 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_322); V_14 = L_323; String_t* L_324 = V_14; bool L_325; L_325 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_324, _stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9, NULL); if (!L_325) { goto IL_0874; } } { String_t* L_326 = V_14; bool L_327; L_327 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_326, _stringLiteral3915A096ACD919832A1C4E84ABDC7D6F6B72630D, NULL); if (!L_327) { goto IL_0874; } } { String_t* L_328 = V_14; bool L_329; L_329 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_328, _stringLiteralC32EB74E6CF2D3CD9BDC7BEEB45FE8C6413C1E6E, NULL); if (!L_329) { goto IL_0874; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_330 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_331 = L_330->___encoding_3; if (((Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B*)IsInstClass((RuntimeObject*)L_331, Ucs4Encoding_t14CCEC5401979A4752F6F04C62D41054472D415B_il2cpp_TypeInfo_var))) { goto IL_0874; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_332 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_333 = L_332->___encoding_3; NullCheck(L_333); int32_t L_334; L_334 = VirtualFuncInvoker1< int32_t, String_t* >::Invoke(11 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_333, _stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003); G_B123_0 = _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD; G_B123_1 = __this; if ((((int32_t)L_334) == ((int32_t)1))) { G_B124_0 = _stringLiteralE1A5710D77750DE15143DC722BD4D7F361D7E8BD; G_B124_1 = __this; goto IL_086a; } } { G_B125_0 = _stringLiteralA99D512DBB15CEE509B88EBCE4AB195F07681F44; G_B125_1 = G_B123_0; G_B125_2 = G_B123_1; goto IL_086f; } IL_086a: { G_B125_0 = _stringLiteralE577106AF74D4E432DDB4785DA3B2BE486F67838; G_B125_1 = G_B124_0; G_B125_2 = G_B124_1; } IL_086f: { NullCheck(G_B125_2); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(G_B125_2, G_B125_1, G_B125_0, NULL); } IL_0874: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_335 = (&__this->___ps_6); Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* L_336 = L_335->___decoder_6; if (!((SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23*)IsInstClass((RuntimeObject*)L_336, SafeAsciiDecoder_tDA47373858021AD0271528093DF8C0C03FF90C23_il2cpp_TypeInfo_var))) { goto IL_088c; } } { XmlTextReaderImpl_SwitchEncodingToUTF8_m0D0BF3FCAF9BAC54D7631A62F6CAE59F58F55F38(__this, NULL); } IL_088c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_337 = (&__this->___ps_6); L_337->___appendMode_4 = (bool)0; return (bool)0; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseDocumentContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseDocumentContent_mF4332115464F64242A412C79F3B0D159E7B4517F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D2BCBCC0DB06E7D1FE3B24D38EDC45C54A7D7B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral887708FAE81F8854FED4472593567E230376CF20); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DBC0541C87F546156D168685887CFF3444537CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AFA0F72F280AF1D61641FD81B06319BC977BCDA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA05288B6212EA20126730A5B780745B08DD3D36); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF773281DF3C0FFE95AB2CE662598454A2DD1214); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; int32_t V_2 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL; Il2CppChar V_4 = 0x0; int32_t V_5 = 0; int32_t V_6 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B74_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B73_0 = NULL; int32_t G_B75_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B75_1 = NULL; { V_0 = (bool)0; } IL_0002: { V_1 = (bool)0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; V_2 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2->___chars_0; V_3 = L_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_3; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)60))))) { goto IL_021b; } } { V_1 = (bool)1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); int32_t L_9 = L_8->___charsUsed_2; int32_t L_10 = V_2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))) < ((int32_t)4))) { goto IL_030b; } } { int32_t L_11 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_3; int32_t L_13 = V_2; NullCheck(L_12); int32_t L_14 = L_13; uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast(L_14)); V_4 = L_15; Il2CppChar L_16 = V_4; if ((((int32_t)L_16) == ((int32_t)((int32_t)33)))) { goto IL_0074; } } { Il2CppChar L_17 = V_4; if ((((int32_t)L_17) == ((int32_t)((int32_t)47)))) { goto IL_01c0; } } { Il2CppChar L_18 = V_4; if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)63))))) { goto IL_01d3; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); int32_t L_20 = V_2; L_19->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_20, 1)); bool L_21; L_21 = XmlTextReaderImpl_ParsePI_m6E8400067F34CBC2348BEFF511D4A08C2D0028D9(__this, NULL); if (!L_21) { goto IL_0002; } } { return (bool)1; } IL_0074: { int32_t L_22 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); int32_t L_24 = L_23->___charsUsed_2; int32_t L_25 = V_2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_24, L_25))) < ((int32_t)2))) { goto IL_030b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = V_3; int32_t L_27 = V_2; NullCheck(L_26); int32_t L_28 = L_27; uint16_t L_29 = (uint16_t)(L_26)->GetAt(static_cast(L_28)); if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)45))))) { goto IL_00c9; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = V_3; int32_t L_31 = V_2; NullCheck(L_30); int32_t L_32 = ((int32_t)il2cpp_codegen_add(L_31, 1)); uint16_t L_33 = (uint16_t)(L_30)->GetAt(static_cast(L_32)); if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)45))))) { goto IL_00b6; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); int32_t L_35 = V_2; L_34->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_35, 2)); bool L_36; L_36 = XmlTextReaderImpl_ParseComment_m8C13A96E0EA7CE2D682C6E9560504BD5093A27A4(__this, NULL); if (!L_36) { goto IL_0002; } } { return (bool)1; } IL_00b6: { int32_t L_37 = V_2; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, ((int32_t)il2cpp_codegen_add(L_37, 1)), _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0, NULL); goto IL_030b; } IL_00c9: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = V_3; int32_t L_39 = V_2; NullCheck(L_38); int32_t L_40 = L_39; uint16_t L_41 = (uint16_t)(L_38)->GetAt(static_cast(L_40)); if ((!(((uint32_t)L_41) == ((uint32_t)((int32_t)91))))) { goto IL_0154; } } { int32_t L_42 = __this->___fragmentType_46; if ((((int32_t)L_42) == ((int32_t)((int32_t)9)))) { goto IL_0139; } } { int32_t L_43 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_43, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_44 = (&__this->___ps_6); int32_t L_45 = L_44->___charsUsed_2; int32_t L_46 = V_2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_45, L_46))) < ((int32_t)6))) { goto IL_030b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = V_3; int32_t L_48 = V_2; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_49; L_49 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_47, L_48, 6, _stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596, NULL); if (!L_49) { goto IL_0128; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); int32_t L_51 = V_2; L_50->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_51, 6)); XmlTextReaderImpl_ParseCData_m9F7DDEB84A22C55F46A07F40FDFB0D4EACB97C7D(__this, NULL); int32_t L_52 = __this->___fragmentType_46; if (L_52) { goto IL_0126; } } { __this->___fragmentType_46 = 1; } IL_0126: { return (bool)1; } IL_0128: { int32_t L_53 = V_2; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, L_53, _stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596, NULL); goto IL_030b; } IL_0139: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); int32_t L_55 = L_54->___charPos_1; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_55, _stringLiteral887708FAE81F8854FED4472593567E230376CF20, NULL); goto IL_030b; } IL_0154: { int32_t L_56 = __this->___fragmentType_46; if ((((int32_t)L_56) == ((int32_t)((int32_t)9)))) { goto IL_0166; } } { int32_t L_57 = __this->___fragmentType_46; if (L_57) { goto IL_0187; } } IL_0166: { __this->___fragmentType_46 = ((int32_t)9); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_58 = (&__this->___ps_6); int32_t L_59 = V_2; L_58->___charPos_1 = L_59; bool L_60; L_60 = XmlTextReaderImpl_ParseDoctypeDecl_mBDE8F7BD4F76D04F8D6C6E042C3CE212E4E76C07(__this, NULL); if (!L_60) { goto IL_0002; } } { return (bool)1; } IL_0187: { int32_t L_61 = V_2; String_t* L_62; L_62 = XmlTextReaderImpl_ParseUnexpectedToken_m5D57668EDBBF58EA0914EEFE32EDC62F2DCF321C(__this, L_61, NULL); bool L_63; L_63 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_62, _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C, NULL); if (!L_63) { goto IL_01aa; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral9AFA0F72F280AF1D61641FD81B06319BC977BCDA, NULL); goto IL_030b; } IL_01aa: { int32_t L_64 = V_2; XmlTextReaderImpl_ThrowUnexpectedToken_m3F9B9CE4DB4B31F87C9F8F9BBB145F68191417E3(__this, L_64, _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4, _stringLiteral8DBC0541C87F546156D168685887CFF3444537CD, NULL); goto IL_030b; } IL_01c0: { int32_t L_65 = V_2; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, ((int32_t)il2cpp_codegen_add(L_65, 1)), _stringLiteral77D2BCBCC0DB06E7D1FE3B24D38EDC45C54A7D7B, NULL); goto IL_030b; } IL_01d3: { bool L_66 = __this->___rootElementParsed_62; if (!L_66) { goto IL_0200; } } { int32_t L_67 = __this->___fragmentType_46; if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)9))))) { goto IL_01f1; } } { int32_t L_68 = V_2; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_68, _stringLiteralEF773281DF3C0FFE95AB2CE662598454A2DD1214, NULL); } IL_01f1: { int32_t L_69 = __this->___fragmentType_46; if (L_69) { goto IL_0200; } } { __this->___fragmentType_46 = 1; } IL_0200: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_70 = (&__this->___ps_6); int32_t L_71 = V_2; L_70->___charPos_1 = L_71; __this->___rootElementParsed_62 = (bool)1; XmlTextReaderImpl_ParseElement_mC58FBB56F6D72E270C7CC455B69B70A861B169A9(__this, NULL); return (bool)1; } IL_021b: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_72 = V_3; int32_t L_73 = V_2; NullCheck(L_72); int32_t L_74 = L_73; uint16_t L_75 = (uint16_t)(L_72)->GetAt(static_cast(L_74)); if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)38))))) { goto IL_02ad; } } { int32_t L_76 = __this->___fragmentType_46; if ((!(((uint32_t)L_76) == ((uint32_t)((int32_t)9))))) { goto IL_0240; } } { int32_t L_77 = V_2; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_77, _stringLiteral887708FAE81F8854FED4472593567E230376CF20, NULL); goto IL_030b; } IL_0240: { int32_t L_78 = __this->___fragmentType_46; if (L_78) { goto IL_024f; } } { __this->___fragmentType_46 = 1; } IL_024f: { int32_t L_79; L_79 = XmlTextReaderImpl_HandleEntityReference_mCDF9E4056C8508F64B66ABE7063D04D48DA64CA5(__this, (bool)0, 1, (&V_5), NULL); V_6 = L_79; int32_t L_80 = V_6; if ((!(((uint32_t)L_80) > ((uint32_t)2)))) { goto IL_0283; } } { int32_t L_81 = V_6; if ((!(((uint32_t)L_81) == ((uint32_t)6)))) { goto IL_0290; } } { int32_t L_82 = __this->___parsingFunction_7; if ((!(((uint32_t)L_82) == ((uint32_t)((int32_t)13))))) { goto IL_027b; } } { int32_t L_83 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_83; } IL_027b: { XmlTextReaderImpl_ParseEntityReference_m88F7B5D5FA448C8728068D1440DC9849BD1F0815(__this, NULL); return (bool)1; } IL_0283: { bool L_84; L_84 = XmlTextReaderImpl_ParseText_mA9F988A11AF15A5DB7084BC5390EFC570E43497B(__this, NULL); if (!L_84) { goto IL_0002; } } { return (bool)1; } IL_0290: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_85 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_86 = L_85->___chars_0; V_3 = L_86; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_87 = (&__this->___ps_6); int32_t L_88 = L_87->___charPos_1; V_2 = L_88; goto IL_0002; } IL_02ad: { int32_t L_89 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_90 = (&__this->___ps_6); int32_t L_91 = L_90->___charsUsed_2; if ((((int32_t)L_89) == ((int32_t)L_91))) { goto IL_030b; } } { bool L_92 = __this->___v1Compat_37; bool L_93 = V_0; if (!((int32_t)((int32_t)L_92|(int32_t)L_93))) { goto IL_02ca; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_94 = V_3; int32_t L_95 = V_2; NullCheck(L_94); int32_t L_96 = L_95; uint16_t L_97 = (uint16_t)(L_94)->GetAt(static_cast(L_96)); if (!L_97) { goto IL_030b; } } IL_02ca: { int32_t L_98 = __this->___fragmentType_46; if ((!(((uint32_t)L_98) == ((uint32_t)((int32_t)9))))) { goto IL_02e1; } } { bool L_99; L_99 = XmlTextReaderImpl_ParseRootLevelWhitespace_m257220A2F345BCA0D16CBFB1C2D4D276CBACB5DB(__this, NULL); if (!L_99) { goto IL_0002; } } { return (bool)1; } IL_02e1: { bool L_100; L_100 = XmlTextReaderImpl_ParseText_mA9F988A11AF15A5DB7084BC5390EFC570E43497B(__this, NULL); if (!L_100) { goto IL_0002; } } { int32_t L_101 = __this->___fragmentType_46; if (L_101) { goto IL_0309; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_102 = __this->___curNode_11; NullCheck(L_102); int32_t L_103 = L_102->___type_1; if ((!(((uint32_t)L_103) == ((uint32_t)3)))) { goto IL_0309; } } { __this->___fragmentType_46 = 1; } IL_0309: { return (bool)1; } IL_030b: { int32_t L_104; L_104 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (!L_104) { goto IL_0321; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_105 = (&__this->___ps_6); int32_t L_106 = L_105->___charPos_1; V_2 = L_106; goto IL_038b; } IL_0321: { bool L_107 = V_1; if (!L_107) { goto IL_032f; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral887708FAE81F8854FED4472593567E230376CF20, NULL); } IL_032f: { bool L_108; L_108 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); if (!L_108) { goto IL_034b; } } { bool L_109; L_109 = XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6(__this, (bool)1, NULL); if (!L_109) { goto IL_0002; } } { XmlTextReaderImpl_SetupEndEntityNodeInContent_m5DF2EE9E86D586C0DD11D845EEA3BCC0ACFB47BE(__this, NULL); return (bool)1; } IL_034b: { bool L_110 = __this->___rootElementParsed_62; if (L_110) { goto IL_0368; } } { int32_t L_111 = __this->___fragmentType_46; if ((!(((uint32_t)L_111) == ((uint32_t)((int32_t)9))))) { goto IL_0368; } } { XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E(__this, _stringLiteralCA05288B6212EA20126730A5B780745B08DD3D36, NULL); } IL_0368: { int32_t L_112 = __this->___fragmentType_46; if (L_112) { goto IL_0383; } } { bool L_113 = __this->___rootElementParsed_62; G_B73_0 = __this; if (L_113) { G_B74_0 = __this; goto IL_037c; } } { G_B75_0 = 1; G_B75_1 = G_B73_0; goto IL_037e; } IL_037c: { G_B75_0 = ((int32_t)9); G_B75_1 = G_B74_0; } IL_037e: { NullCheck(G_B75_1); G_B75_1->___fragmentType_46 = G_B75_0; } IL_0383: { XmlTextReaderImpl_OnEof_m8F5DFF89DE3251F9CEFA219E6A1AB8D268191B36(__this, NULL); return (bool)0; } IL_038b: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_114 = (&__this->___ps_6); int32_t L_115 = L_114->___charPos_1; V_2 = L_115; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_116 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_117 = L_116->___chars_0; V_3 = L_117; goto IL_0002; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseElementContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseElementContent_m92E1275AE62507C98DCE8F933E591F7FA3C42E60 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DBC0541C87F546156D168685887CFF3444537CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AFA0F72F280AF1D61641FD81B06319BC977BCDA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; Il2CppChar V_2 = 0x0; Il2CppChar V_3 = 0x0; IL_0000: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; V_0 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2->___chars_0; V_1 = L_3; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_1; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); V_2 = L_7; Il2CppChar L_8 = V_2; if ((((int32_t)L_8) == ((int32_t)((int32_t)38)))) { goto IL_0177; } } { Il2CppChar L_9 = V_2; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)60))))) { goto IL_0184; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = V_1; int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = ((int32_t)il2cpp_codegen_add(L_11, 1)); uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast(L_12)); V_3 = L_13; Il2CppChar L_14 = V_3; if ((((int32_t)L_14) == ((int32_t)((int32_t)33)))) { goto IL_005f; } } { Il2CppChar L_15 = V_3; if ((((int32_t)L_15) == ((int32_t)((int32_t)47)))) { goto IL_013b; } } { Il2CppChar L_16 = V_3; if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)63))))) { goto IL_0151; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18 = V_0; L_17->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_18, 2)); bool L_19; L_19 = XmlTextReaderImpl_ParsePI_m6E8400067F34CBC2348BEFF511D4A08C2D0028D9(__this, NULL); if (!L_19) { goto IL_0000; } } { return (bool)1; } IL_005f: { int32_t L_20 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_20, 2)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_21 = (&__this->___ps_6); int32_t L_22 = L_21->___charsUsed_2; int32_t L_23 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_22, L_23))) < ((int32_t)2))) { goto IL_019f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_1; int32_t L_25 = V_0; NullCheck(L_24); int32_t L_26 = L_25; uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast(L_26)); if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)45))))) { goto IL_00b4; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = V_1; int32_t L_29 = V_0; NullCheck(L_28); int32_t L_30 = ((int32_t)il2cpp_codegen_add(L_29, 1)); uint16_t L_31 = (uint16_t)(L_28)->GetAt(static_cast(L_30)); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)45))))) { goto IL_00a1; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_32 = (&__this->___ps_6); int32_t L_33 = V_0; L_32->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_33, 2)); bool L_34; L_34 = XmlTextReaderImpl_ParseComment_m8C13A96E0EA7CE2D682C6E9560504BD5093A27A4(__this, NULL); if (!L_34) { goto IL_0000; } } { return (bool)1; } IL_00a1: { int32_t L_35 = V_0; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, ((int32_t)il2cpp_codegen_add(L_35, 1)), _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0, NULL); goto IL_019f; } IL_00b4: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = V_1; int32_t L_37 = V_0; NullCheck(L_36); int32_t L_38 = L_37; uint16_t L_39 = (uint16_t)(L_36)->GetAt(static_cast(L_38)); if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)91))))) { goto IL_0108; } } { int32_t L_40 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_40, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_41 = (&__this->___ps_6); int32_t L_42 = L_41->___charsUsed_2; int32_t L_43 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_42, L_43))) < ((int32_t)6))) { goto IL_019f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_44 = V_1; int32_t L_45 = V_0; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_46; L_46 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_44, L_45, 6, _stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596, NULL); if (!L_46) { goto IL_00f7; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t L_48 = V_0; L_47->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_48, 6)); XmlTextReaderImpl_ParseCData_m9F7DDEB84A22C55F46A07F40FDFB0D4EACB97C7D(__this, NULL); return (bool)1; } IL_00f7: { int32_t L_49 = V_0; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, L_49, _stringLiteral9DB177E8C0CBE853033933A889510F9E5D48D596, NULL); goto IL_019f; } IL_0108: { int32_t L_50 = V_0; String_t* L_51; L_51 = XmlTextReaderImpl_ParseUnexpectedToken_m5D57668EDBBF58EA0914EEFE32EDC62F2DCF321C(__this, L_50, NULL); bool L_52; L_52 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_51, _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C, NULL); if (!L_52) { goto IL_0128; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral9AFA0F72F280AF1D61641FD81B06319BC977BCDA, NULL); goto IL_019f; } IL_0128: { int32_t L_53 = V_0; XmlTextReaderImpl_ThrowUnexpectedToken_m3F9B9CE4DB4B31F87C9F8F9BBB145F68191417E3(__this, L_53, _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4, _stringLiteral8DBC0541C87F546156D168685887CFF3444537CD, NULL); goto IL_019f; } IL_013b: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); int32_t L_55 = V_0; L_54->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_55, 2)); XmlTextReaderImpl_ParseEndElement_mF854379A4EABFF551AF08D8524F49E10B5FA9D7C(__this, NULL); return (bool)1; } IL_0151: { int32_t L_56 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_57 = (&__this->___ps_6); int32_t L_58 = L_57->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_56, 1))) == ((int32_t)L_58))) { goto IL_019f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_59 = (&__this->___ps_6); int32_t L_60 = V_0; L_59->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_60, 1)); XmlTextReaderImpl_ParseElement_mC58FBB56F6D72E270C7CC455B69B70A861B169A9(__this, NULL); return (bool)1; } IL_0177: { bool L_61; L_61 = XmlTextReaderImpl_ParseText_mA9F988A11AF15A5DB7084BC5390EFC570E43497B(__this, NULL); if (!L_61) { goto IL_0000; } } { return (bool)1; } IL_0184: { int32_t L_62 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_63 = (&__this->___ps_6); int32_t L_64 = L_63->___charsUsed_2; if ((((int32_t)L_62) == ((int32_t)L_64))) { goto IL_019f; } } { bool L_65; L_65 = XmlTextReaderImpl_ParseText_mA9F988A11AF15A5DB7084BC5390EFC570E43497B(__this, NULL); if (!L_65) { goto IL_0000; } } { return (bool)1; } IL_019f: { int32_t L_66; L_66 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_66) { goto IL_0000; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_67 = (&__this->___ps_6); int32_t L_68 = L_67->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_69 = (&__this->___ps_6); int32_t L_70 = L_69->___charPos_1; if (!((int32_t)il2cpp_codegen_subtract(L_68, L_70))) { goto IL_01c9; } } { XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2(__this, NULL); } IL_01c9: { bool L_71; L_71 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); if (L_71) { goto IL_01f1; } } { int32_t L_72 = __this->___index_12; if (L_72) { goto IL_01eb; } } { int32_t L_73 = __this->___fragmentType_46; if ((((int32_t)L_73) == ((int32_t)((int32_t)9)))) { goto IL_01eb; } } { XmlTextReaderImpl_OnEof_m8F5DFF89DE3251F9CEFA219E6A1AB8D268191B36(__this, NULL); return (bool)0; } IL_01eb: { XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2(__this, NULL); } IL_01f1: { bool L_74; L_74 = XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6(__this, (bool)1, NULL); if (!L_74) { goto IL_0000; } } { XmlTextReaderImpl_SetupEndEntityNodeInContent_m5DF2EE9E86D586C0DD11D845EEA3BCC0ACFB47BE(__this, NULL); return (bool)1; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowUnclosedElements() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5E2DECD6397CBF8168176B1CB6CB4B7A4984E43); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_1 = NULL; int32_t G_B6_0 = 0; { int32_t L_0 = __this->___index_12; if (L_0) { goto IL_002d; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = __this->___curNode_11; NullCheck(L_1); int32_t L_2 = L_1->___type_1; if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_002d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4 = L_3->___charsUsed_2; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_4, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); return; } IL_002d: { int32_t L_5 = __this->___parsingFunction_7; if ((((int32_t)L_5) == ((int32_t)((int32_t)14)))) { goto IL_0041; } } { int32_t L_6 = __this->___index_12; G_B6_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1)); goto IL_0047; } IL_0041: { int32_t L_7 = __this->___index_12; G_B6_0 = L_7; } IL_0047: { V_0 = G_B6_0; StringBuilder_t* L_8 = __this->___stringBuilder_61; NullCheck(L_8); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_8, 0, NULL); goto IL_00ac; } IL_0056: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_9 = __this->___nodes_10; int32_t L_10 = V_0; NullCheck(L_9); int32_t L_11 = L_10; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = (L_9)->GetAt(static_cast(L_11)); V_1 = L_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = V_1; NullCheck(L_13); int32_t L_14 = L_13->___type_1; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_00a8; } } { StringBuilder_t* L_15 = __this->___stringBuilder_61; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = V_1; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_17 = __this->___nameTable_20; NullCheck(L_16); String_t* L_18; L_18 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_16, L_17, NULL); NullCheck(L_15); StringBuilder_t* L_19; L_19 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, L_18, NULL); int32_t L_20 = V_0; if ((((int32_t)L_20) <= ((int32_t)0))) { goto IL_0097; } } { StringBuilder_t* L_21 = __this->___stringBuilder_61; NullCheck(L_21); StringBuilder_t* L_22; L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_21, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL); goto IL_00a8; } IL_0097: { StringBuilder_t* L_23 = __this->___stringBuilder_61; NullCheck(L_23); StringBuilder_t* L_24; L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, NULL); } IL_00a8: { int32_t L_25 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_25, 1)); } IL_00ac: { int32_t L_26 = V_0; if ((((int32_t)L_26) >= ((int32_t)0))) { goto IL_0056; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_27 = (&__this->___ps_6); int32_t L_28 = L_27->___charsUsed_2; StringBuilder_t* L_29 = __this->___stringBuilder_61; NullCheck(L_29); String_t* L_30; L_30 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29); XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397(__this, L_28, _stringLiteralE5E2DECD6397CBF8168176B1CB6CB4B7A4984E43, L_30, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ParseElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseElement_mC58FBB56F6D72E270C7CC455B69B70A861B169A9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; int32_t V_2 = 0; Il2CppChar V_3 = 0x0; int32_t V_4 = 0; int32_t V_5 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; V_0 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2->___chars_0; V_1 = L_3; V_2 = (-1); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6; L_6 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_5, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8; L_8 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_7, NULL); NullCheck(L_4); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_4, L_6, L_8, NULL); } IL_003b: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_9 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = L_9->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_1; int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13 = L_12; uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast(L_13)); NullCheck(L_10); uint16_t L_15 = L_14; uint8_t L_16 = (L_10)->GetAt(static_cast(L_15)); if (!((int32_t)((int32_t)L_16&4))) { goto IL_00b2; } } { int32_t L_17 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_17, 1)); } IL_0052: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_18 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = L_18->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_1; int32_t L_21 = V_0; NullCheck(L_20); int32_t L_22 = L_21; uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast(L_22)); NullCheck(L_19); uint16_t L_24 = L_23; uint8_t L_25 = (L_19)->GetAt(static_cast(L_24)); if (!((int32_t)((int32_t)L_25&8))) { goto IL_006b; } } { int32_t L_26 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1)); goto IL_0052; } IL_006b: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = V_1; int32_t L_28 = V_0; NullCheck(L_27); int32_t L_29 = L_28; uint16_t L_30 = (uint16_t)(L_27)->GetAt(static_cast(L_29)); if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)58))))) { goto IL_00a2; } } { int32_t L_31 = V_2; if ((((int32_t)L_31) == ((int32_t)(-1)))) { goto IL_009a; } } { bool L_32 = __this->___supportNamespaces_25; if (!L_32) { goto IL_0094; } } { int32_t L_33 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_34; L_34 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(((int32_t)58), 0, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_33, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_34, NULL); goto IL_00b2; } IL_0094: { int32_t L_35 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_35, 1)); goto IL_0052; } IL_009a: { int32_t L_36 = V_0; V_2 = L_36; int32_t L_37 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_37, 1)); goto IL_003b; } IL_00a2: { int32_t L_38 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_39 = (&__this->___ps_6); int32_t L_40 = L_39->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_38, 1))) < ((int32_t)L_40))) { goto IL_00c7; } } IL_00b2: { int32_t L_41; L_41 = XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56(__this, (&V_2), NULL); V_0 = L_41; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_42 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_43 = L_42->___chars_0; V_1 = L_43; } IL_00c7: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_44 = __this->___namespaceManager_38; NullCheck(L_44); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlNamespaceManager::PushScope() */, L_44); int32_t L_45 = V_2; if ((((int32_t)L_45) == ((int32_t)(-1)))) { goto IL_00de; } } { bool L_46 = __this->___supportNamespaces_25; if (L_46) { goto IL_0113; } } IL_00de: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_47 = __this->___curNode_11; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_48 = __this->___nameTable_20; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_49 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); int32_t L_51 = L_50->___charPos_1; int32_t L_52 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = L_53->___charPos_1; NullCheck(L_48); String_t* L_55; L_55 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_48, L_49, L_51, ((int32_t)il2cpp_codegen_subtract(L_52, L_54))); NullCheck(L_47); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_47, 1, L_55, NULL); goto IL_01bb; } IL_0113: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_56 = (&__this->___ps_6); int32_t L_57 = L_56->___charPos_1; V_4 = L_57; int32_t L_58 = V_2; int32_t L_59 = V_4; V_5 = ((int32_t)il2cpp_codegen_subtract(L_58, L_59)); int32_t L_60 = V_5; String_t* L_61 = __this->___lastPrefix_39; NullCheck(L_61); int32_t L_62; L_62 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_61, NULL); if ((!(((uint32_t)L_60) == ((uint32_t)L_62)))) { goto IL_0170; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = V_1; int32_t L_64 = V_4; int32_t L_65 = V_5; String_t* L_66 = __this->___lastPrefix_39; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_67; L_67 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_63, L_64, L_65, L_66, NULL); if (!L_67) { goto IL_0170; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_68 = __this->___curNode_11; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_69 = __this->___nameTable_20; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_70 = V_1; int32_t L_71 = V_2; int32_t L_72 = V_0; int32_t L_73 = V_2; NullCheck(L_69); String_t* L_74; L_74 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_69, L_70, ((int32_t)il2cpp_codegen_add(L_71, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_72, L_73)), 1))); String_t* L_75 = __this->___lastPrefix_39; NullCheck(L_68); NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA(L_68, 1, L_74, L_75, (String_t*)NULL, NULL); goto IL_01bb; } IL_0170: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_76 = __this->___curNode_11; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_77 = __this->___nameTable_20; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_78 = V_1; int32_t L_79 = V_2; int32_t L_80 = V_0; int32_t L_81 = V_2; NullCheck(L_77); String_t* L_82; L_82 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_77, L_78, ((int32_t)il2cpp_codegen_add(L_79, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_80, L_81)), 1))); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_83 = __this->___nameTable_20; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_84 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_85 = (&__this->___ps_6); int32_t L_86 = L_85->___charPos_1; int32_t L_87 = V_5; NullCheck(L_83); String_t* L_88; L_88 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_83, L_84, L_86, L_87); NullCheck(L_76); NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA(L_76, 1, L_82, L_88, (String_t*)NULL, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_89 = __this->___curNode_11; NullCheck(L_89); String_t* L_90 = L_89->___prefix_3; __this->___lastPrefix_39 = L_90; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastPrefix_39), (void*)L_90); } IL_01bb: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_91 = V_1; int32_t L_92 = V_0; NullCheck(L_91); int32_t L_93 = L_92; uint16_t L_94 = (uint16_t)(L_91)->GetAt(static_cast(L_93)); V_3 = L_94; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_95 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_96 = L_95->___charProperties_2; Il2CppChar L_97 = V_3; NullCheck(L_96); Il2CppChar L_98 = L_97; uint8_t L_99 = (L_96)->GetAt(static_cast(L_98)); if (!((!(((uint32_t)((int32_t)((int32_t)L_99&1))) <= ((uint32_t)0)))? 1 : 0)) { goto IL_01e6; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_100 = (&__this->___ps_6); int32_t L_101 = V_0; L_100->___charPos_1 = L_101; XmlTextReaderImpl_ParseAttributes_mFBFB888D130B8F6F3131EF3BBD0E4036BF795ED8(__this, NULL); return; } IL_01e6: { Il2CppChar L_102 = V_3; if ((!(((uint32_t)L_102) == ((uint32_t)((int32_t)62))))) { goto IL_0205; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_103 = (&__this->___ps_6); int32_t L_104 = V_0; L_103->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_104, 1)); __this->___parsingFunction_7 = 6; goto IL_02be; } IL_0205: { Il2CppChar L_105 = V_3; if ((!(((uint32_t)L_105) == ((uint32_t)((int32_t)47))))) { goto IL_02a0; } } { int32_t L_106 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_107 = (&__this->___ps_6); int32_t L_108 = L_107->___charsUsed_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_106, 1))) == ((uint32_t)L_108)))) { goto IL_025a; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_109 = (&__this->___ps_6); int32_t L_110 = V_0; L_109->___charPos_1 = L_110; int32_t L_111; L_111 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_111) { goto IL_0242; } } { int32_t L_112 = V_0; XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397(__this, L_112, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); } IL_0242: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_113 = (&__this->___ps_6); int32_t L_114 = L_113->___charPos_1; V_0 = L_114; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_115 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_116 = L_115->___chars_0; V_1 = L_116; } IL_025a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_117 = V_1; int32_t L_118 = V_0; NullCheck(L_117); int32_t L_119 = ((int32_t)il2cpp_codegen_add(L_118, 1)); uint16_t L_120 = (uint16_t)(L_117)->GetAt(static_cast(L_119)); if ((!(((uint32_t)L_120) == ((uint32_t)((int32_t)62))))) { goto IL_0292; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_121 = __this->___curNode_11; NullCheck(L_121); NodeData_set_IsEmptyElement_mD9AA39D1F91A00BEDBED1204654917447AF2D57D_inline(L_121, (bool)1, NULL); int32_t L_122 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_122; __this->___parsingFunction_7 = 8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_123 = (&__this->___ps_6); int32_t L_124 = V_0; L_123->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_124, 2)); goto IL_02be; } IL_0292: { int32_t L_125 = V_0; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, L_125, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); goto IL_02be; } IL_02a0: { int32_t L_126 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_127 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_128 = (&__this->___ps_6); int32_t L_129 = L_128->___charsUsed_2; int32_t L_130 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_131; L_131 = XmlException_BuildCharExceptionArgs_mC868154C32A2950D756F3E42B40D79DC4B7BBA33(L_127, L_129, L_130, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_126, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_131, NULL); } IL_02be: { bool L_132 = __this->___addDefaultAttributesAndNormalize_60; if (!L_132) { goto IL_02cc; } } { XmlTextReaderImpl_AddDefaultAttributesAndNormalize_m9D138E0186D03B44739A980AF7AB82F24BB7C3A6(__this, NULL); } IL_02cc: { XmlTextReaderImpl_ElementNamespaceLookup_m469B3650864A3CC8C828C6DCC12C4435D2428072(__this, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::AddDefaultAttributesAndNormalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AddDefaultAttributesAndNormalize_m9D138E0186D03B44739A980AF7AB82F24BB7C3A6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdAttributeListInfo_t07FD0314BEFEF9941C7CEC6F2944B28AD50F979F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t055C83CBB6D9B0D62F3BFC9AC8A5169CA06B72E3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tD2D98CA9C23AE3358DD671D9F760AF794EF0712B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB040418CA8E9ED382EC72BF18BDDDFBD260DCBDC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF138E7719F7B2C087914A020E21C85F0382BCBE4); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; int32_t V_2 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_3 = NULL; RuntimeObject* V_4 = NULL; int32_t V_5 = 0; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* V_6 = NULL; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_7 = NULL; RuntimeObject* V_8 = NULL; RuntimeObject* V_9 = NULL; String_t* V_10 = NULL; String_t* V_11 = NULL; String_t* G_B27_0 = NULL; { RuntimeObject* L_0 = __this->___dtdInfo_45; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = __this->___curNode_11; NullCheck(L_1); String_t* L_2 = L_1->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = __this->___curNode_11; NullCheck(L_3); String_t* L_4 = L_3->___prefix_3; NullCheck(L_0); RuntimeObject* L_5; L_5 = InterfaceFuncInvoker2< RuntimeObject*, String_t*, String_t* >::Invoke(4 /* System.Xml.IDtdAttributeListInfo System.Xml.IDtdInfo::LookupAttributeList(System.String,System.String) */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_0, L_2, L_4); V_0 = L_5; RuntimeObject* L_6 = V_0; if (L_6) { goto IL_0026; } } { return; } IL_0026: { bool L_7 = __this->___normalize_24; if (!L_7) { goto IL_00eb; } } { RuntimeObject* L_8 = V_0; NullCheck(L_8); bool L_9; L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Xml.IDtdAttributeListInfo::get_HasNonCDataAttributes() */, IDtdAttributeListInfo_t07FD0314BEFEF9941C7CEC6F2944B28AD50F979F_il2cpp_TypeInfo_var, L_8); if (!L_9) { goto IL_00eb; } } { int32_t L_10 = __this->___index_12; V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1)); goto IL_00d6; } IL_004a: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_11 = __this->___nodes_10; int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = L_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_14 = (L_11)->GetAt(static_cast(L_13)); V_3 = L_14; RuntimeObject* L_15 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = V_3; NullCheck(L_16); String_t* L_17 = L_16->___prefix_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_18 = V_3; NullCheck(L_18); String_t* L_19 = L_18->___localName_2; NullCheck(L_15); RuntimeObject* L_20; L_20 = InterfaceFuncInvoker2< RuntimeObject*, String_t*, String_t* >::Invoke(1 /* System.Xml.IDtdAttributeInfo System.Xml.IDtdAttributeListInfo::LookupAttribute(System.String,System.String) */, IDtdAttributeListInfo_t07FD0314BEFEF9941C7CEC6F2944B28AD50F979F_il2cpp_TypeInfo_var, L_15, L_17, L_19); V_4 = L_20; RuntimeObject* L_21 = V_4; if (!L_21) { goto IL_00d2; } } { RuntimeObject* L_22 = V_4; NullCheck(L_22); bool L_23; L_23 = InterfaceFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.IDtdAttributeInfo::get_IsNonCDataType() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_22); if (!L_23) { goto IL_00d2; } } { bool L_24; L_24 = XmlTextReaderImpl_get_DtdValidation_mE5F1E5DAF37701D9E2278709B95107872BA06DA7(__this, NULL); if (!L_24) { goto IL_00cc; } } { bool L_25 = __this->___standalone_63; if (!L_25) { goto IL_00cc; } } { RuntimeObject* L_26 = V_4; NullCheck(L_26); bool L_27; L_27 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Xml.IDtdAttributeInfo::get_IsDeclaredInExternal() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_26); if (!L_27) { goto IL_00cc; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_28 = V_3; NullCheck(L_28); String_t* L_29; L_29 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_28, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_30 = V_3; NullCheck(L_30); NodeData_TrimSpacesInValue_m8B3A9D1567033FA59E05CAC4E7C0BCF7126790B1(L_30, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_31 = V_3; NullCheck(L_31); String_t* L_32; L_32 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_31, NULL); bool L_33; L_33 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_29, L_32, NULL); if (!L_33) { goto IL_00d2; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_34 = V_3; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_35 = __this->___nameTable_20; NullCheck(L_34); String_t* L_36; L_36 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_34, L_35, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_37 = V_3; NullCheck(L_37); int32_t L_38; L_38 = NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090(L_37, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_39 = V_3; NullCheck(L_39); int32_t L_40; L_40 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_39, NULL); XmlTextReaderImpl_SendValidationEvent_m8ED366B9B5A8F444B385EA8725CC08667F3B9D85(__this, 0, _stringLiteralF138E7719F7B2C087914A020E21C85F0382BCBE4, L_36, L_38, L_40, NULL); goto IL_00d2; } IL_00cc: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_41 = V_3; NullCheck(L_41); NodeData_TrimSpacesInValue_m8B3A9D1567033FA59E05CAC4E7C0BCF7126790B1(L_41, NULL); } IL_00d2: { int32_t L_42 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_42, 1)); } IL_00d6: { int32_t L_43 = V_2; int32_t L_44 = __this->___index_12; int32_t L_45 = __this->___attrCount_14; if ((((int32_t)L_43) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_44, 1)), L_45))))) { goto IL_004a; } } IL_00eb: { RuntimeObject* L_46 = V_0; NullCheck(L_46); RuntimeObject* L_47; L_47 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.Generic.IEnumerable`1 System.Xml.IDtdAttributeListInfo::LookupDefaultAttributes() */, IDtdAttributeListInfo_t07FD0314BEFEF9941C7CEC6F2944B28AD50F979F_il2cpp_TypeInfo_var, L_46); V_1 = L_47; RuntimeObject* L_48 = V_1; if (!L_48) { goto IL_020c; } } { int32_t L_49 = __this->___attrCount_14; V_5 = L_49; V_6 = (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)NULL; int32_t L_50 = __this->___attrCount_14; if ((((int32_t)L_50) < ((int32_t)((int32_t)250)))) { goto IL_0149; } } { int32_t L_51 = __this->___attrCount_14; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_52 = (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)SZArrayNew(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var, (uint32_t)L_51); V_6 = L_52; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_53 = __this->___nodes_10; int32_t L_54 = __this->___index_12; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_55 = V_6; int32_t L_56 = __this->___attrCount_14; Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_53, ((int32_t)il2cpp_codegen_add(L_54, 1)), (RuntimeArray*)L_55, 0, L_56, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_57 = V_6; V_7 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_57; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_58 = V_7; il2cpp_codegen_runtime_class_init_inline(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); RuntimeObject* L_59; L_59 = DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_mF0B0C0F3D7173DBD9A59C94B5364AAF425F1D599_inline(NULL); Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0(L_58, L_59, Array_Sort_TisRuntimeObject_mF046CC80A34B34B8D33C604578B1BB40AF99BCB0_RuntimeMethod_var); } IL_0149: { RuntimeObject* L_60 = V_1; NullCheck(L_60); RuntimeObject* L_61; L_61 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1 System.Collections.Generic.IEnumerable`1::GetEnumerator() */, IEnumerable_1_t055C83CBB6D9B0D62F3BFC9AC8A5169CA06B72E3_il2cpp_TypeInfo_var, L_60); V_8 = L_61; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_01e7: {// begin finally (depth: 1) { RuntimeObject* L_62 = V_8; if (!L_62) { goto IL_01f2; } } { RuntimeObject* L_63 = V_8; NullCheck(L_63); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_63); } IL_01f2: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_01d9_1; } IL_0156_1: { RuntimeObject* L_64 = V_8; NullCheck(L_64); RuntimeObject* L_65; L_65 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1::get_Current() */, IEnumerator_1_tD2D98CA9C23AE3358DD671D9F760AF794EF0712B_il2cpp_TypeInfo_var, L_64); V_9 = L_65; RuntimeObject* L_66 = V_9; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_67 = V_6; bool L_68; L_68 = XmlTextReaderImpl_AddDefaultAttributeDtd_mF22FAABF13D4076D5A95FDCBD423732FFEEF434A(__this, L_66, (bool)1, L_67, NULL); if (!L_68) { goto IL_01d9_1; } } { bool L_69; L_69 = XmlTextReaderImpl_get_DtdValidation_mE5F1E5DAF37701D9E2278709B95107872BA06DA7(__this, NULL); if (!L_69) { goto IL_01d9_1; } } { bool L_70 = __this->___standalone_63; if (!L_70) { goto IL_01d9_1; } } { RuntimeObject* L_71 = V_9; NullCheck(L_71); bool L_72; L_72 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Xml.IDtdAttributeInfo::get_IsDeclaredInExternal() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_71); if (!L_72) { goto IL_01d9_1; } } { RuntimeObject* L_73 = V_9; NullCheck(L_73); String_t* L_74; L_74 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdAttributeInfo::get_Prefix() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_73); V_10 = L_74; String_t* L_75 = V_10; NullCheck(L_75); int32_t L_76; L_76 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_75, NULL); if (!L_76) { goto IL_01ac_1; } } { String_t* L_77 = V_10; RuntimeObject* L_78 = V_9; NullCheck(L_78); String_t* L_79; L_79 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdAttributeInfo::get_LocalName() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_78); String_t* L_80; L_80 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_77, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_79, NULL); G_B27_0 = L_80; goto IL_01b3_1; } IL_01ac_1: { RuntimeObject* L_81 = V_9; NullCheck(L_81); String_t* L_82; L_82 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdAttributeInfo::get_LocalName() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_81); G_B27_0 = L_82; } IL_01b3_1: { V_11 = G_B27_0; String_t* L_83 = V_11; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_84 = __this->___curNode_11; NullCheck(L_84); int32_t L_85; L_85 = NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090(L_84, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_86 = __this->___curNode_11; NullCheck(L_86); int32_t L_87; L_87 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_86, NULL); XmlTextReaderImpl_SendValidationEvent_m8ED366B9B5A8F444B385EA8725CC08667F3B9D85(__this, 0, _stringLiteralB040418CA8E9ED382EC72BF18BDDDFBD260DCBDC, L_83, L_85, L_87, NULL); } IL_01d9_1: { RuntimeObject* L_88 = V_8; NullCheck(L_88); bool L_89; L_89 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_88); if (L_89) { goto IL_0156_1; } } { goto IL_01f3; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_01f3: { int32_t L_90 = V_5; if (L_90) { goto IL_020c; } } { bool L_91 = __this->___attrNeedNamespaceLookup_17; if (!L_91) { goto IL_020c; } } { XmlTextReaderImpl_AttributeNamespaceLookup_m35B1E6A2EB56452DB5BF4A319B8CC44D31184F3B(__this, NULL); __this->___attrNeedNamespaceLookup_17 = (bool)0; } IL_020c: { return; } } // System.Void System.Xml.XmlTextReaderImpl::ParseEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseEndElement_mF854379A4EABFF551AF08D8524F49E10B5FA9D7C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_4 = NULL; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; int32_t V_7 = 0; Il2CppChar V_8 = 0x0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B36_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B35_0 = NULL; int32_t G_B37_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B37_1 = NULL; { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_0 = __this->___nodes_10; int32_t L_1 = __this->___index_12; NullCheck(L_0); int32_t L_2 = ((int32_t)il2cpp_codegen_subtract(L_1, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = (L_0)->GetAt(static_cast(L_2)); V_0 = L_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = V_0; NullCheck(L_4); String_t* L_5 = L_4->___prefix_3; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); V_1 = L_6; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_0; NullCheck(L_7); String_t* L_8 = L_7->___localName_2; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); V_2 = L_9; goto IL_0032; } IL_002a: { int32_t L_10; L_10 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (!L_10) { goto IL_0050; } } IL_0032: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); int32_t L_12 = L_11->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = L_13->___charPos_1; int32_t L_15 = V_1; int32_t L_16 = V_2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_12, L_14))) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_15, L_16)), 1))))) { goto IL_002a; } } IL_0050: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17->___chars_0; V_4 = L_18; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = V_0; NullCheck(L_19); String_t* L_20 = L_19->___prefix_3; NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL); if (L_21) { goto IL_0090; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = V_4; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); int32_t L_24 = L_23->___charPos_1; int32_t L_25 = V_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_26 = V_0; NullCheck(L_26); String_t* L_27 = L_26->___localName_2; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_28; L_28 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_22, L_24, L_25, L_27, NULL); if (L_28) { goto IL_008c; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_29 = V_0; XmlTextReaderImpl_ThrowTagMismatch_mFF98A6F4F3A7D2C10068AFE4FEECC4CC17C0B5B5(__this, L_29, NULL); } IL_008c: { int32_t L_30 = V_2; V_3 = L_30; goto IL_00e4; } IL_0090: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); int32_t L_32 = L_31->___charPos_1; int32_t L_33 = V_1; V_7 = ((int32_t)il2cpp_codegen_add(L_32, L_33)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = V_4; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_35 = (&__this->___ps_6); int32_t L_36 = L_35->___charPos_1; int32_t L_37 = V_1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_38 = V_0; NullCheck(L_38); String_t* L_39 = L_38->___prefix_3; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_40; L_40 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_34, L_36, L_37, L_39, NULL); if (!L_40) { goto IL_00d7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = V_4; int32_t L_42 = V_7; NullCheck(L_41); int32_t L_43 = L_42; uint16_t L_44 = (uint16_t)(L_41)->GetAt(static_cast(L_43)); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)58))))) { goto IL_00d7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_45 = V_4; int32_t L_46 = V_7; int32_t L_47 = V_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_48 = V_0; NullCheck(L_48); String_t* L_49 = L_48->___localName_2; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_50; L_50 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_45, ((int32_t)il2cpp_codegen_add(L_46, 1)), L_47, L_49, NULL); if (L_50) { goto IL_00de; } } IL_00d7: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_51 = V_0; XmlTextReaderImpl_ThrowTagMismatch_mFF98A6F4F3A7D2C10068AFE4FEECC4CC17C0B5B5(__this, L_51, NULL); } IL_00de: { int32_t L_52 = V_2; int32_t L_53 = V_1; V_3 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_52, L_53)), 1)); } IL_00e4: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); int32_t L_55 = L_54->___lineNo_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_56 = (&__this->___ps_6); int32_t L_57; L_57 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_56, NULL); LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0((&V_5), L_55, L_57, NULL); } IL_0101: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_58 = (&__this->___ps_6); int32_t L_59 = L_58->___charPos_1; int32_t L_60 = V_3; V_6 = ((int32_t)il2cpp_codegen_add(L_59, L_60)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_61 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_62 = L_61->___chars_0; V_4 = L_62; int32_t L_63 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_64 = (&__this->___ps_6); int32_t L_65 = L_64->___charsUsed_2; if ((((int32_t)L_63) == ((int32_t)L_65))) { goto IL_01ec; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_66 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_67 = L_66->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68 = V_4; int32_t L_69 = V_6; NullCheck(L_68); int32_t L_70 = L_69; uint16_t L_71 = (uint16_t)(L_68)->GetAt(static_cast(L_70)); NullCheck(L_67); uint16_t L_72 = L_71; uint8_t L_73 = (L_67)->GetAt(static_cast(L_72)); if (((int32_t)((int32_t)L_73&8))) { goto IL_014d; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_74 = V_4; int32_t L_75 = V_6; NullCheck(L_74); int32_t L_76 = L_75; uint16_t L_77 = (uint16_t)(L_74)->GetAt(static_cast(L_76)); if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)58))))) { goto IL_0154; } } IL_014d: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_78 = V_0; XmlTextReaderImpl_ThrowTagMismatch_mFF98A6F4F3A7D2C10068AFE4FEECC4CC17C0B5B5(__this, L_78, NULL); } IL_0154: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = V_4; int32_t L_80 = V_6; NullCheck(L_79); int32_t L_81 = L_80; uint16_t L_82 = (uint16_t)(L_79)->GetAt(static_cast(L_81)); if ((((int32_t)L_82) == ((int32_t)((int32_t)62)))) { goto IL_01c7; } } { goto IL_01b2; } IL_015f: { int32_t L_83 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_83, 1)); Il2CppChar L_84 = V_8; if ((((int32_t)L_84) == ((int32_t)((int32_t)10)))) { goto IL_0173; } } { Il2CppChar L_85 = V_8; if ((((int32_t)L_85) == ((int32_t)((int32_t)13)))) { goto IL_017d; } } { goto IL_01b2; } IL_0173: { int32_t L_86 = V_6; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_86, NULL); goto IL_01b2; } IL_017d: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_87 = V_4; int32_t L_88 = V_6; NullCheck(L_87); int32_t L_89 = L_88; uint16_t L_90 = (uint16_t)(L_87)->GetAt(static_cast(L_89)); if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)10))))) { goto IL_018e; } } { int32_t L_91 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_91, 1)); goto IL_01aa; } IL_018e: { int32_t L_92 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_93 = (&__this->___ps_6); int32_t L_94 = L_93->___charsUsed_2; if ((!(((uint32_t)L_92) == ((uint32_t)L_94)))) { goto IL_01aa; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_95 = (&__this->___ps_6); bool L_96 = L_95->___isEof_15; if (!L_96) { goto IL_01b2; } } IL_01aa: { int32_t L_97 = V_6; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_97, NULL); } IL_01b2: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_98 = (&__this->___xmlCharType_5); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_99 = V_4; int32_t L_100 = V_6; NullCheck(L_99); int32_t L_101 = L_100; uint16_t L_102 = (uint16_t)(L_99)->GetAt(static_cast(L_101)); uint16_t L_103 = L_102; V_8 = L_103; bool L_104; L_104 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_98, L_103, NULL); if (L_104) { goto IL_015f; } } IL_01c7: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_105 = V_4; int32_t L_106 = V_6; NullCheck(L_105); int32_t L_107 = L_106; uint16_t L_108 = (uint16_t)(L_105)->GetAt(static_cast(L_107)); if ((((int32_t)L_108) == ((int32_t)((int32_t)62)))) { goto IL_0202; } } { int32_t L_109 = V_6; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_110 = (&__this->___ps_6); int32_t L_111 = L_110->___charsUsed_2; if ((((int32_t)L_109) == ((int32_t)L_111))) { goto IL_01ec; } } { int32_t L_112 = V_6; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, L_112, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); } IL_01ec: { int32_t L_113; L_113 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_113) { goto IL_0101; } } { XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2(__this, NULL); goto IL_0101; } IL_0202: { int32_t L_114 = __this->___index_12; __this->___index_12 = ((int32_t)il2cpp_codegen_subtract(L_114, 1)); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_115 = __this->___nodes_10; int32_t L_116 = __this->___index_12; NullCheck(L_115); int32_t L_117 = L_116; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_118 = (L_115)->GetAt(static_cast(L_117)); __this->___curNode_11 = L_118; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_118); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_119 = V_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_120 = V_5; NullCheck(L_119); L_119->___lineInfo_10 = L_120; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_121 = V_0; NullCheck(L_121); L_121->___type_1 = ((int32_t)15); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_122 = (&__this->___ps_6); int32_t L_123 = V_6; L_122->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_123, 1)); int32_t L_124 = __this->___index_12; G_B35_0 = __this; if ((((int32_t)L_124) > ((int32_t)0))) { G_B36_0 = __this; goto IL_024f; } } { G_B37_0 = 5; G_B37_1 = G_B35_0; goto IL_0255; } IL_024f: { int32_t L_125 = __this->___parsingFunction_7; G_B37_0 = ((int32_t)(L_125)); G_B37_1 = G_B36_0; } IL_0255: { NullCheck(G_B37_1); G_B37_1->___nextParsingFunction_8 = G_B37_0; __this->___parsingFunction_7 = 7; return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowTagMismatch(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowTagMismatch_mFF98A6F4F3A7D2C10068AFE4FEECC4CC17C0B5B5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___startTag0, 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*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D2BCBCC0DB06E7D1FE3B24D38EDC45C54A7D7B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3CC44E677A8425D56C2E976CEE5C70648FC3B9F); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL; { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = ___startTag0; NullCheck(L_0); int32_t L_1 = L_0->___type_1; if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0093; } } { int32_t L_2; L_2 = XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56(__this, (&V_0), NULL); V_1 = L_2; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)4); V_2 = L_3; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = V_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = ___startTag0; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = __this->___nameTable_20; NullCheck(L_5); String_t* L_7; L_7 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_5, L_6, NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_7); (L_4)->SetAt(static_cast(0), (String_t*)L_7); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = V_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_9 = ___startTag0; NullCheck(L_9); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_10 = (&L_9->___lineInfo_10); int32_t* L_11 = (&L_10->___lineNo_0); il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12; L_12 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); String_t* L_13; L_13 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B(L_11, L_12, NULL); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_13); (L_8)->SetAt(static_cast(1), (String_t*)L_13); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = V_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = ___startTag0; NullCheck(L_15); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_16 = (&L_15->___lineInfo_10); int32_t* L_17 = (&L_16->___linePos_1); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_18; L_18 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); String_t* L_19; L_19 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B(L_17, L_18, NULL); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_19); (L_14)->SetAt(static_cast(2), (String_t*)L_19); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_21 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = L_21->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); int32_t L_24 = L_23->___charPos_1; int32_t L_25 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); int32_t L_27 = L_26->___charPos_1; String_t* L_28; L_28 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_22, L_24, ((int32_t)il2cpp_codegen_subtract(L_25, L_27)), NULL); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_28); (L_20)->SetAt(static_cast(3), (String_t*)L_28); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = V_2; XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274(__this, _stringLiteralF3CC44E677A8425D56C2E976CEE5C70648FC3B9F, L_29, NULL); return; } IL_0093: { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral77D2BCBCC0DB06E7D1FE3B24D38EDC45C54A7D7B, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ParseAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseAttributes_mFBFB888D130B8F6F3131EF3BBD0E4036BF795ED8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_2 = NULL; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; Il2CppChar V_5 = 0x0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; Il2CppChar V_9 = 0x0; Il2CppChar V_10 = 0x0; Il2CppChar V_11 = 0x0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; V_0 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2->___chars_0; V_1 = L_3; V_2 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL; } IL_001a: { V_3 = 0; goto IL_0089; } IL_001e: { Il2CppChar L_4 = V_4; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)10))))) { goto IL_0033; } } { int32_t L_5 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, ((int32_t)il2cpp_codegen_add(L_5, 1)), NULL); int32_t L_6 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_6, 1)); goto IL_0085; } IL_0033: { Il2CppChar L_7 = V_4; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)13))))) { goto IL_0085; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = V_1; int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add(L_9, 1)); uint16_t L_11 = (uint16_t)(L_8)->GetAt(static_cast(L_10)); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)10))))) { goto IL_0055; } } { int32_t L_12 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, ((int32_t)il2cpp_codegen_add(L_12, 2)), NULL); int32_t L_13 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_13, 1)); int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1)); goto IL_0085; } IL_0055: { int32_t L_15 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); int32_t L_17 = L_16->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_15, 1))) == ((int32_t)L_17))) { goto IL_0074; } } { int32_t L_18 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, ((int32_t)il2cpp_codegen_add(L_18, 1)), NULL); int32_t L_19 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_19, 1)); goto IL_0085; } IL_0074: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); int32_t L_21 = V_0; L_20->___charPos_1 = L_21; goto IL_042c; } IL_0085: { int32_t L_22 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1)); } IL_0089: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_23 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = L_23->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = V_1; int32_t L_26 = V_0; NullCheck(L_25); int32_t L_27 = L_26; uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast(L_27)); uint16_t L_29 = L_28; V_4 = L_29; NullCheck(L_24); uint16_t L_30 = L_29; uint8_t L_31 = (L_24)->GetAt(static_cast(L_30)); if (((int32_t)((int32_t)L_31&1))) { goto IL_001e; } } { V_6 = 0; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_32 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = L_32->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = V_1; int32_t L_35 = V_0; NullCheck(L_34); int32_t L_36 = L_35; uint16_t L_37 = (uint16_t)(L_34)->GetAt(static_cast(L_36)); uint16_t L_38 = L_37; V_5 = L_38; NullCheck(L_33); uint16_t L_39 = L_38; uint8_t L_40 = (L_33)->GetAt(static_cast(L_39)); if (!((int32_t)((int32_t)L_40&4))) { goto IL_00be; } } { V_6 = 1; } IL_00be: { int32_t L_41 = V_6; if (L_41) { goto IL_0186; } } { Il2CppChar L_42 = V_5; if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)62))))) { goto IL_00e5; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_43 = (&__this->___ps_6); int32_t L_44 = V_0; L_43->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_44, 1)); __this->___parsingFunction_7 = 6; goto IL_046c; } IL_00e5: { Il2CppChar L_45 = V_5; if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)47))))) { goto IL_0149; } } { int32_t L_46 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t L_48 = L_47->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_46, 1))) == ((int32_t)L_48))) { goto IL_042c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_49 = V_1; int32_t L_50 = V_0; NullCheck(L_49); int32_t L_51 = ((int32_t)il2cpp_codegen_add(L_50, 1)); uint16_t L_52 = (uint16_t)(L_49)->GetAt(static_cast(L_51)); if ((!(((uint32_t)L_52) == ((uint32_t)((int32_t)62))))) { goto IL_0139; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = V_0; L_53->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_54, 2)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_55 = __this->___curNode_11; NullCheck(L_55); NodeData_set_IsEmptyElement_mD9AA39D1F91A00BEDBED1204654917447AF2D57D_inline(L_55, (bool)1, NULL); int32_t L_56 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_56; __this->___parsingFunction_7 = 8; goto IL_046c; } IL_0139: { int32_t L_57 = V_0; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, ((int32_t)il2cpp_codegen_add(L_57, 1)), _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); goto IL_0186; } IL_0149: { int32_t L_58 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_59 = (&__this->___ps_6); int32_t L_60 = L_59->___charsUsed_2; if ((((int32_t)L_58) == ((int32_t)L_60))) { goto IL_042c; } } { Il2CppChar L_61 = V_5; if ((!(((uint32_t)L_61) == ((uint32_t)((int32_t)58))))) { goto IL_0168; } } { bool L_62 = __this->___supportNamespaces_25; if (!L_62) { goto IL_0186; } } IL_0168: { int32_t L_63 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_65 = (&__this->___ps_6); int32_t L_66 = L_65->___charsUsed_2; int32_t L_67 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_68; L_68 = XmlException_BuildCharExceptionArgs_mC868154C32A2950D756F3E42B40D79DC4B7BBA33(L_64, L_66, L_67, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_63, _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D, L_68, NULL); } IL_0186: { int32_t L_69 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_70 = (&__this->___ps_6); int32_t L_71 = L_70->___charPos_1; if ((!(((uint32_t)L_69) == ((uint32_t)L_71)))) { goto IL_019b; } } { int32_t L_72 = V_0; XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B(__this, L_72, NULL); } IL_019b: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_73 = (&__this->___ps_6); int32_t L_74 = V_0; L_73->___charPos_1 = L_74; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_75 = (&__this->___ps_6); int32_t L_76; L_76 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_75, NULL); V_7 = L_76; V_8 = (-1); int32_t L_77 = V_0; int32_t L_78 = V_6; V_0 = ((int32_t)il2cpp_codegen_add(L_77, L_78)); } IL_01bc: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_79 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_80 = L_79->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_81 = V_1; int32_t L_82 = V_0; NullCheck(L_81); int32_t L_83 = L_82; uint16_t L_84 = (uint16_t)(L_81)->GetAt(static_cast(L_83)); uint16_t L_85 = L_84; V_9 = L_85; NullCheck(L_80); uint16_t L_86 = L_85; uint8_t L_87 = (L_80)->GetAt(static_cast(L_86)); if (!((int32_t)((int32_t)L_87&8))) { goto IL_01d8; } } { int32_t L_88 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_88, 1)); goto IL_01bc; } IL_01d8: { Il2CppChar L_89 = V_9; if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)58))))) { goto IL_023e; } } { int32_t L_90 = V_8; if ((((int32_t)L_90) == ((int32_t)(-1)))) { goto IL_0207; } } { bool L_91 = __this->___supportNamespaces_25; if (!L_91) { goto IL_0201; } } { int32_t L_92 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_93; L_93 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(((int32_t)58), 0, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_92, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_93, NULL); goto IL_0263; } IL_0201: { int32_t L_94 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_94, 1)); goto IL_01bc; } IL_0207: { int32_t L_95 = V_0; V_8 = L_95; int32_t L_96 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_96, 1)); XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_97 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_98 = L_97->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_99 = V_1; int32_t L_100 = V_0; NullCheck(L_99); int32_t L_101 = L_100; uint16_t L_102 = (uint16_t)(L_99)->GetAt(static_cast(L_101)); NullCheck(L_98); uint16_t L_103 = L_102; uint8_t L_104 = (L_98)->GetAt(static_cast(L_103)); if (!((int32_t)((int32_t)L_104&4))) { goto IL_0227; } } { int32_t L_105 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_105, 1)); goto IL_01bc; } IL_0227: { int32_t L_106; L_106 = XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56(__this, (&V_8), NULL); V_0 = L_106; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_107 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_108 = L_107->___chars_0; V_1 = L_108; goto IL_0263; } IL_023e: { int32_t L_109 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_110 = (&__this->___ps_6); int32_t L_111 = L_110->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_109, 1))) < ((int32_t)L_111))) { goto IL_0263; } } { int32_t L_112; L_112 = XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56(__this, (&V_8), NULL); V_0 = L_112; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_113 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_114 = L_113->___chars_0; V_1 = L_114; } IL_0263: { int32_t L_115 = V_0; int32_t L_116 = V_8; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_117; L_117 = XmlTextReaderImpl_AddAttribute_m433FDF6420611ED2F3259758656559AC3B9B7FDA(__this, L_115, L_116, NULL); V_2 = L_117; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_118 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_119 = (&__this->___ps_6); int32_t L_120; L_120 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_119, NULL); int32_t L_121 = V_7; NullCheck(L_118); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_118, L_120, L_121, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_122 = V_1; int32_t L_123 = V_0; NullCheck(L_122); int32_t L_124 = L_123; uint16_t L_125 = (uint16_t)(L_122)->GetAt(static_cast(L_124)); if ((((int32_t)L_125) == ((int32_t)((int32_t)61)))) { goto IL_02b9; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_126 = (&__this->___ps_6); int32_t L_127 = V_0; L_126->___charPos_1 = L_127; int32_t L_128; L_128 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_129 = (&__this->___ps_6); int32_t L_130 = L_129->___charPos_1; V_0 = L_130; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131 = V_1; int32_t L_132 = V_0; NullCheck(L_131); int32_t L_133 = L_132; uint16_t L_134 = (uint16_t)(L_131)->GetAt(static_cast(L_133)); if ((((int32_t)L_134) == ((int32_t)((int32_t)61)))) { goto IL_02b9; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E, NULL); } IL_02b9: { int32_t L_135 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_135, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_136 = V_1; int32_t L_137 = V_0; NullCheck(L_136); int32_t L_138 = L_137; uint16_t L_139 = (uint16_t)(L_136)->GetAt(static_cast(L_138)); V_10 = L_139; Il2CppChar L_140 = V_10; if ((((int32_t)L_140) == ((int32_t)((int32_t)34)))) { goto IL_030f; } } { Il2CppChar L_141 = V_10; if ((((int32_t)L_141) == ((int32_t)((int32_t)39)))) { goto IL_030f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_142 = (&__this->___ps_6); int32_t L_143 = V_0; L_142->___charPos_1 = L_143; int32_t L_144; L_144 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_145 = (&__this->___ps_6); int32_t L_146 = L_145->___charPos_1; V_0 = L_146; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_147 = V_1; int32_t L_148 = V_0; NullCheck(L_147); int32_t L_149 = L_148; uint16_t L_150 = (uint16_t)(L_147)->GetAt(static_cast(L_149)); V_10 = L_150; Il2CppChar L_151 = V_10; if ((((int32_t)L_151) == ((int32_t)((int32_t)34)))) { goto IL_030f; } } { Il2CppChar L_152 = V_10; if ((((int32_t)L_152) == ((int32_t)((int32_t)39)))) { goto IL_030f; } } { XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905(__this, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_030f: { int32_t L_153 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_153, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_154 = (&__this->___ps_6); int32_t L_155 = V_0; L_154->___charPos_1 = L_155; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_156 = V_2; Il2CppChar L_157 = V_10; NullCheck(L_156); L_156->___quoteChar_12 = L_157; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_158 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_159 = (&__this->___ps_6); int32_t L_160; L_160 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_159, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_161 = (&__this->___ps_6); int32_t L_162; L_162 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_161, NULL); NullCheck(L_158); NodeData_SetLineInfo2_mD0AD7BC1A4A18A10953788BC8FBE0B1A02CE26D5(L_158, L_160, L_162, NULL); goto IL_0349; } IL_0345: { int32_t L_163 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_163, 1)); } IL_0349: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_164 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_165 = L_164->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_166 = V_1; int32_t L_167 = V_0; NullCheck(L_166); int32_t L_168 = L_167; uint16_t L_169 = (uint16_t)(L_166)->GetAt(static_cast(L_168)); uint16_t L_170 = L_169; V_11 = L_170; NullCheck(L_165); uint16_t L_171 = L_170; uint8_t L_172 = (L_165)->GetAt(static_cast(L_171)); if (((int32_t)((int32_t)L_172&((int32_t)128)))) { goto IL_0345; } } { Il2CppChar L_173 = V_11; Il2CppChar L_174 = V_10; if ((!(((uint32_t)L_173) == ((uint32_t)L_174)))) { goto IL_039a; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_175 = V_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_176 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_177 = (&__this->___ps_6); int32_t L_178 = L_177->___charPos_1; int32_t L_179 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_180 = (&__this->___ps_6); int32_t L_181 = L_180->___charPos_1; NullCheck(L_175); NodeData_SetValue_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5(L_175, L_176, L_178, ((int32_t)il2cpp_codegen_subtract(L_179, L_181)), NULL); int32_t L_182 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_182, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_183 = (&__this->___ps_6); int32_t L_184 = V_0; L_183->___charPos_1 = L_184; goto IL_03bc; } IL_039a: { int32_t L_185 = V_0; Il2CppChar L_186 = V_10; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_187 = V_2; XmlTextReaderImpl_ParseAttributeValueSlow_mB3F79EF3FC4263EE0519A661137DD3AA5E8B9B7F(__this, L_185, L_186, L_187, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_188 = (&__this->___ps_6); int32_t L_189 = L_188->___charPos_1; V_0 = L_189; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_190 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_191 = L_190->___chars_0; V_1 = L_191; } IL_03bc: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_192 = V_2; NullCheck(L_192); String_t* L_193 = L_192->___prefix_3; NullCheck(L_193); int32_t L_194; L_194 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_193, NULL); if (L_194) { goto IL_03eb; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_195 = V_2; NullCheck(L_195); String_t* L_196 = L_195->___localName_2; String_t* L_197 = __this->___XmlNs_78; bool L_198; L_198 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_196, L_197, NULL); if (!L_198) { goto IL_001a; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_199 = V_2; XmlTextReaderImpl_OnDefaultNamespaceDecl_m581C1C3BE2502F2CA915188A04CFD5126FF0EAD4(__this, L_199, NULL); goto IL_001a; } IL_03eb: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_200 = V_2; NullCheck(L_200); String_t* L_201 = L_200->___prefix_3; String_t* L_202 = __this->___XmlNs_78; bool L_203; L_203 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_201, L_202, NULL); if (!L_203) { goto IL_040a; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_204 = V_2; XmlTextReaderImpl_OnNamespaceDecl_mB01BF6581EA46964237342B9942656CD4E06EE3F(__this, L_204, NULL); goto IL_001a; } IL_040a: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_205 = V_2; NullCheck(L_205); String_t* L_206 = L_205->___prefix_3; String_t* L_207 = __this->___Xml_77; bool L_208; L_208 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_206, L_207, NULL); if (!L_208) { goto IL_001a; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_209 = V_2; XmlTextReaderImpl_OnXmlReservedAttribute_m8A9D2126DA01CF2E3E3E9D99DC5A2D0D36707D25(__this, L_209, NULL); goto IL_001a; } IL_042c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_210 = (&__this->___ps_6); int32_t* L_211 = (&L_210->___lineNo_11); int32_t* L_212 = L_211; int32_t L_213 = *((int32_t*)L_212); int32_t L_214 = V_3; *((int32_t*)L_212) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_213, L_214)); int32_t L_215; L_215 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (!L_215) { goto IL_0461; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_216 = (&__this->___ps_6); int32_t L_217 = L_216->___charPos_1; V_0 = L_217; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_218 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_219 = L_218->___chars_0; V_1 = L_219; goto IL_001a; } IL_0461: { XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2(__this, NULL); goto IL_001a; } IL_046c: { bool L_220 = __this->___addDefaultAttributesAndNormalize_60; if (!L_220) { goto IL_047a; } } { XmlTextReaderImpl_AddDefaultAttributesAndNormalize_m9D138E0186D03B44739A980AF7AB82F24BB7C3A6(__this, NULL); } IL_047a: { XmlTextReaderImpl_ElementNamespaceLookup_m469B3650864A3CC8C828C6DCC12C4435D2428072(__this, NULL); bool L_221 = __this->___attrNeedNamespaceLookup_17; if (!L_221) { goto IL_0495; } } { XmlTextReaderImpl_AttributeNamespaceLookup_m35B1E6A2EB56452DB5BF4A319B8CC44D31184F3B(__this, NULL); __this->___attrNeedNamespaceLookup_17 = (bool)0; } IL_0495: { int32_t L_222 = __this->___attrDuplWalkCount_16; if ((((int32_t)L_222) < ((int32_t)((int32_t)250)))) { goto IL_04a8; } } { XmlTextReaderImpl_AttributeDuplCheck_m647C40056686C2C01D4BF4A9E356ADDB98C9B60D(__this, NULL); } IL_04a8: { return; } } // System.Void System.Xml.XmlTextReaderImpl::ElementNamespaceLookup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ElementNamespaceLookup_m469B3650864A3CC8C828C6DCC12C4435D2428072 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); String_t* L_1 = L_0->___prefix_3; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if (L_2) { goto IL_0029; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = __this->___curNode_11; XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_4 = __this->___xmlContext_40; NullCheck(L_4); String_t* L_5 = L_4->___defaultNamespace_2; NullCheck(L_3); L_3->___ns_4 = L_5; Il2CppCodeGenWriteBarrier((void**)(&L_3->___ns_4), (void*)L_5); return; } IL_0029: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_6 = __this->___curNode_11; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = __this->___curNode_11; String_t* L_8; L_8 = XmlTextReaderImpl_LookupNamespace_mE589C9F86465B7D1B74C56E1A18F9FC0169AED1F(__this, L_7, NULL); NullCheck(L_6); L_6->___ns_4 = L_8; Il2CppCodeGenWriteBarrier((void**)(&L_6->___ns_4), (void*)L_8); return; } } // System.Void System.Xml.XmlTextReaderImpl::AttributeNamespaceLookup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AttributeNamespaceLookup_m35B1E6A2EB56452DB5BF4A319B8CC44D31184F3B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_1 = NULL; { int32_t L_0 = __this->___index_12; V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1)); goto IL_003c; } IL_000b: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_1 = __this->___nodes_10; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = (L_1)->GetAt(static_cast(L_3)); V_1 = L_4; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = V_1; NullCheck(L_5); int32_t L_6 = L_5->___type_1; if ((!(((uint32_t)L_6) == ((uint32_t)2)))) { goto IL_0038; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_1; NullCheck(L_7); String_t* L_8 = L_7->___prefix_3; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_0038; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = V_1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_11 = V_1; String_t* L_12; L_12 = XmlTextReaderImpl_LookupNamespace_mE589C9F86465B7D1B74C56E1A18F9FC0169AED1F(__this, L_11, NULL); NullCheck(L_10); L_10->___ns_4 = L_12; Il2CppCodeGenWriteBarrier((void**)(&L_10->___ns_4), (void*)L_12); } IL_0038: { int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1)); } IL_003c: { int32_t L_14 = V_0; int32_t L_15 = __this->___index_12; int32_t L_16 = __this->___attrCount_14; if ((((int32_t)L_14) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_15, L_16)), 1))))) { goto IL_000b; } } { return; } } // System.Void System.Xml.XmlTextReaderImpl::AttributeDuplCheck() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AttributeDuplCheck_m647C40056686C2C01D4BF4A9E356ADDB98C9B60D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Sort_TisNodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_m89C5DC5A1ACC546949B0964C6AB1CE054488C03B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_1 = NULL; int32_t V_2 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_3 = NULL; int32_t V_4 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_5 = NULL; { int32_t L_0 = __this->___attrCount_14; if ((((int32_t)L_0) >= ((int32_t)((int32_t)250)))) { goto IL_00cc; } } { int32_t L_1 = __this->___index_12; V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1)); goto IL_00b6; } IL_001e: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_2 = __this->___nodes_10; int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = (L_2)->GetAt(static_cast(L_4)); V_1 = L_5; int32_t L_6 = V_0; V_2 = ((int32_t)il2cpp_codegen_add(L_6, 1)); goto IL_009d; } IL_002d: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_1; NullCheck(L_7); String_t* L_8 = L_7->___localName_2; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_9 = __this->___nodes_10; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = (L_9)->GetAt(static_cast(L_11)); NullCheck(L_12); String_t* L_13 = L_12->___localName_2; bool L_14; L_14 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_8, L_13, NULL); if (!L_14) { goto IL_0099; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = V_1; NullCheck(L_15); String_t* L_16 = L_15->___ns_4; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_17 = __this->___nodes_10; int32_t L_18 = V_2; NullCheck(L_17); int32_t L_19 = L_18; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20 = (L_17)->GetAt(static_cast(L_19)); NullCheck(L_20); String_t* L_21 = L_20->___ns_4; bool L_22; L_22 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_16, L_21, NULL); if (!L_22) { goto IL_0099; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_23 = __this->___nodes_10; int32_t L_24 = V_2; NullCheck(L_23); int32_t L_25 = L_24; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_26 = (L_23)->GetAt(static_cast(L_25)); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_27 = __this->___nameTable_20; NullCheck(L_26); String_t* L_28; L_28 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_26, L_27, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_29 = __this->___nodes_10; int32_t L_30 = V_2; NullCheck(L_29); int32_t L_31 = L_30; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_32 = (L_29)->GetAt(static_cast(L_31)); NullCheck(L_32); int32_t L_33; L_33 = NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090(L_32, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_34 = __this->___nodes_10; int32_t L_35 = V_2; NullCheck(L_34); int32_t L_36 = L_35; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_37 = (L_34)->GetAt(static_cast(L_36)); NullCheck(L_37); int32_t L_38; L_38 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_37, NULL); XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF, L_28, L_33, L_38, NULL); } IL_0099: { int32_t L_39 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_39, 1)); } IL_009d: { int32_t L_40 = V_2; int32_t L_41 = __this->___index_12; int32_t L_42 = __this->___attrCount_14; if ((((int32_t)L_40) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_41, 1)), L_42))))) { goto IL_002d; } } { int32_t L_43 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_43, 1)); } IL_00b6: { int32_t L_44 = V_0; int32_t L_45 = __this->___index_12; int32_t L_46 = __this->___attrCount_14; if ((((int32_t)L_44) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_45, 1)), L_46))))) { goto IL_001e; } } { return; } IL_00cc: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_47 = __this->___attrDuplSortingArray_19; if (!L_47) { goto IL_00e4; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_48 = __this->___attrDuplSortingArray_19; NullCheck(L_48); int32_t L_49 = __this->___attrCount_14; if ((((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length))) >= ((int32_t)L_49))) { goto IL_00f5; } } IL_00e4: { int32_t L_50 = __this->___attrCount_14; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_51 = (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)SZArrayNew(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var, (uint32_t)L_50); __this->___attrDuplSortingArray_19 = L_51; Il2CppCodeGenWriteBarrier((void**)(&__this->___attrDuplSortingArray_19), (void*)L_51); } IL_00f5: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_52 = __this->___nodes_10; int32_t L_53 = __this->___index_12; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_54 = __this->___attrDuplSortingArray_19; int32_t L_55 = __this->___attrCount_14; Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_52, ((int32_t)il2cpp_codegen_add(L_53, 1)), (RuntimeArray*)L_54, 0, L_55, NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_56 = __this->___attrDuplSortingArray_19; int32_t L_57 = __this->___attrCount_14; Array_Sort_TisNodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_m89C5DC5A1ACC546949B0964C6AB1CE054488C03B(L_56, 0, L_57, Array_Sort_TisNodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_m89C5DC5A1ACC546949B0964C6AB1CE054488C03B_RuntimeMethod_var); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_58 = __this->___attrDuplSortingArray_19; NullCheck(L_58); int32_t L_59 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_60 = (L_58)->GetAt(static_cast(L_59)); V_3 = L_60; V_4 = 1; goto IL_0197; } IL_0135: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_61 = __this->___attrDuplSortingArray_19; int32_t L_62 = V_4; NullCheck(L_61); int32_t L_63 = L_62; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_64 = (L_61)->GetAt(static_cast(L_63)); V_5 = L_64; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_65 = V_3; NullCheck(L_65); String_t* L_66 = L_65->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_67 = V_5; NullCheck(L_67); String_t* L_68 = L_67->___localName_2; bool L_69; L_69 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_66, L_68, NULL); if (!L_69) { goto IL_018e; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_70 = V_3; NullCheck(L_70); String_t* L_71 = L_70->___ns_4; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_72 = V_5; NullCheck(L_72); String_t* L_73 = L_72->___ns_4; bool L_74; L_74 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_71, L_73, NULL); if (!L_74) { goto IL_018e; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_75 = V_5; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_76 = __this->___nameTable_20; NullCheck(L_75); String_t* L_77; L_77 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_75, L_76, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_78 = V_5; NullCheck(L_78); int32_t L_79; L_79 = NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090(L_78, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_80 = V_5; NullCheck(L_80); int32_t L_81; L_81 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_80, NULL); XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF, L_77, L_79, L_81, NULL); } IL_018e: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_82 = V_5; V_3 = L_82; int32_t L_83 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_83, 1)); } IL_0197: { int32_t L_84 = V_4; int32_t L_85 = __this->___attrCount_14; if ((((int32_t)L_84) < ((int32_t)L_85))) { goto IL_0135; } } { return; } } // System.Void System.Xml.XmlTextReaderImpl::OnDefaultNamespaceDecl(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnDefaultNamespaceDecl_m581C1C3BE2502F2CA915188A04CFD5126FF0EAD4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, 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*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { bool L_0 = __this->___supportNamespaces_25; if (L_0) { goto IL_0009; } } { return; } IL_0009: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___nameTable_20; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = ___attr0; NullCheck(L_2); String_t* L_3; L_3 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_2, NULL); NullCheck(L_1); String_t* L_4; L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_1, L_3); V_0 = L_4; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = ___attr0; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = __this->___nameTable_20; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); NullCheck(L_5); L_5->___ns_4 = L_7; Il2CppCodeGenWriteBarrier((void**)(&L_5->___ns_4), (void*)L_7); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = __this->___curNode_11; NullCheck(L_8); bool L_9 = L_8->___xmlContextPushed_16; if (L_9) { goto IL_0044; } } { XmlTextReaderImpl_PushXmlContext_m32D32A6DD05D7274AB2762228D3DFA63083F0A9C(__this, NULL); } IL_0044: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_10 = __this->___xmlContext_40; String_t* L_11 = V_0; NullCheck(L_10); L_10->___defaultNamespace_2 = L_11; Il2CppCodeGenWriteBarrier((void**)(&L_10->___defaultNamespace_2), (void*)L_11); String_t* L_12 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; String_t* L_13 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_14 = ___attr0; XmlTextReaderImpl_AddNamespace_m386AA71482212EB7FAEED6FCD330173150E87AFB(__this, L_12, L_13, L_14, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::OnNamespaceDecl(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnNamespaceDecl_mB01BF6581EA46964237342B9942656CD4E06EE3F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11FD22D825C5C7EEDE7CA43876F02B7D8B4C213F); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { bool L_0 = __this->___supportNamespaces_25; if (L_0) { goto IL_0009; } } { return; } IL_0009: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___nameTable_20; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = ___attr0; NullCheck(L_2); String_t* L_3; L_3 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_2, NULL); NullCheck(L_1); String_t* L_4; L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_1, L_3); V_0 = L_4; String_t* L_5 = V_0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if (L_6) { goto IL_0046; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = ___attr0; NullCheck(L_7); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_8 = (&L_7->___lineInfo2_11); int32_t L_9 = L_8->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = ___attr0; NullCheck(L_10); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_11 = (&L_10->___lineInfo2_11); int32_t L_12 = L_11->___linePos_1; XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63(__this, _stringLiteral11FD22D825C5C7EEDE7CA43876F02B7D8B4C213F, L_9, ((int32_t)il2cpp_codegen_subtract(L_12, 1)), NULL); } IL_0046: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = ___attr0; NullCheck(L_13); String_t* L_14 = L_13->___localName_2; String_t* L_15 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = ___attr0; XmlTextReaderImpl_AddNamespace_m386AA71482212EB7FAEED6FCD330173150E87AFB(__this, L_14, L_15, L_16, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::OnXmlReservedAttribute(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnXmlReservedAttribute_m8A9D2126DA01CF2E3E3E9D99DC5A2D0D36707D25 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = ___attr0; NullCheck(L_0); String_t* L_1 = L_0->___localName_2; V_0 = L_1; String_t* L_2 = V_0; bool L_3; L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_2, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, NULL); if (L_3) { goto IL_0022; } } { String_t* L_4 = V_0; bool L_5; L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, NULL); if (L_5) { goto IL_009f; } } { return; } IL_0022: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_6 = __this->___curNode_11; NullCheck(L_6); bool L_7 = L_6->___xmlContextPushed_16; if (L_7) { goto IL_0035; } } { XmlTextReaderImpl_PushXmlContext_m32D32A6DD05D7274AB2762228D3DFA63083F0A9C(__this, NULL); } IL_0035: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = ___attr0; NullCheck(L_8); String_t* L_9; L_9 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_8, NULL); il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); String_t* L_10; L_10 = XmlConvert_TrimString_m10347633D50C56FCE0BFC58077D71AEBD88F9509(L_9, NULL); V_1 = L_10; String_t* L_11 = V_1; bool L_12; L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, NULL); if (L_12) { goto IL_005d; } } { String_t* L_13 = V_1; bool L_14; L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL); if (L_14) { goto IL_006a; } } { goto IL_0077; } IL_005d: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_15 = __this->___xmlContext_40; NullCheck(L_15); L_15->___xmlSpace_0 = 2; return; } IL_006a: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_16 = __this->___xmlContext_40; NullCheck(L_16); L_16->___xmlSpace_0 = 1; return; } IL_0077: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_17 = ___attr0; NullCheck(L_17); String_t* L_18; L_18 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_17, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = ___attr0; NullCheck(L_19); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_20 = (&L_19->___lineInfo_10); int32_t L_21 = L_20->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_22 = ___attr0; NullCheck(L_22); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_23 = (&L_22->___lineInfo_10); int32_t L_24 = L_23->___linePos_1; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7, L_18, L_21, L_24, NULL); return; } IL_009f: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_25 = __this->___curNode_11; NullCheck(L_25); bool L_26 = L_25->___xmlContextPushed_16; if (L_26) { goto IL_00b2; } } { XmlTextReaderImpl_PushXmlContext_m32D32A6DD05D7274AB2762228D3DFA63083F0A9C(__this, NULL); } IL_00b2: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_27 = __this->___xmlContext_40; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_28 = ___attr0; NullCheck(L_28); String_t* L_29; L_29 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_28, NULL); NullCheck(L_27); L_27->___xmlLang_1 = L_29; Il2CppCodeGenWriteBarrier((void**)(&L_27->___xmlLang_1), (void*)L_29); return; } } // System.Void System.Xml.XmlTextReaderImpl::ParseAttributeValueSlow(System.Int32,System.Char,System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseAttributeValueSlow_mB3F79EF3FC4263EE0519A661137DD3AA5E8B9B7F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___curPos0, Il2CppChar ___quoteChar1, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27EFD03821B8E8379AA7D14DB641482FB950DF7B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 V_4; memset((&V_4), 0, sizeof(V_4)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_5 = NULL; int32_t V_6 = 0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 V_7; memset((&V_7), 0, sizeof(V_7)); Il2CppChar V_8 = 0x0; int32_t V_9 = 0; int32_t V_10 = 0; String_t* V_11 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_12 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_13 = NULL; int32_t V_14 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_15 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_16 = NULL; int32_t V_17 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_18 = NULL; StringBuilder_t* G_B22_0 = NULL; StringBuilder_t* G_B21_0 = NULL; String_t* G_B23_0 = NULL; StringBuilder_t* G_B23_1 = NULL; { int32_t L_0 = ___curPos0; V_0 = L_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1->___chars_0; V_1 = L_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4 = L_3->___entityId_18; V_2 = L_4; V_3 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___lineNo_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8; L_8 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_7, NULL); LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0((&V_4), L_6, L_8, NULL); V_5 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL; goto IL_0042; } IL_003e: { int32_t L_9 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_9, 1)); } IL_0042: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_10 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_1; int32_t L_13 = V_0; NullCheck(L_12); int32_t L_14 = L_13; uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast(L_14)); NullCheck(L_11); uint16_t L_16 = L_15; uint8_t L_17 = (L_11)->GetAt(static_cast(L_16)); if (((int32_t)((int32_t)L_17&((int32_t)128)))) { goto IL_003e; } } { int32_t L_18 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); int32_t L_20 = L_19->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_18, L_20))) <= ((int32_t)0))) { goto IL_009a; } } { StringBuilder_t* L_21 = __this->___stringBuilder_61; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); int32_t L_24 = L_23->___charPos_1; int32_t L_25 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); int32_t L_27 = L_26->___charPos_1; NullCheck(L_21); StringBuilder_t* L_28; L_28 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_21, L_22, L_24, ((int32_t)il2cpp_codegen_subtract(L_25, L_27)), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); int32_t L_30 = V_0; L_29->___charPos_1 = L_30; } IL_009a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = V_1; int32_t L_32 = V_0; NullCheck(L_31); int32_t L_33 = L_32; uint16_t L_34 = (uint16_t)(L_31)->GetAt(static_cast(L_33)); Il2CppChar L_35 = ___quoteChar1; if ((!(((uint32_t)L_34) == ((uint32_t)L_35)))) { goto IL_00b1; } } { int32_t L_36 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_37 = (&__this->___ps_6); int32_t L_38 = L_37->___entityId_18; if ((((int32_t)L_36) == ((int32_t)L_38))) { goto IL_063f; } } IL_00b1: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = V_1; int32_t L_40 = V_0; NullCheck(L_39); int32_t L_41 = L_40; uint16_t L_42 = (uint16_t)(L_39)->GetAt(static_cast(L_41)); V_8 = L_42; Il2CppChar L_43 = V_8; if ((!(((uint32_t)L_43) <= ((uint32_t)((int32_t)38))))) { goto IL_00f1; } } { Il2CppChar L_44 = V_8; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_44, ((int32_t)9)))) { case 0: { goto IL_01e4; } case 1: { goto IL_0111; } case 2: { goto IL_04f8; } case 3: { goto IL_04f8; } case 4: { goto IL_014a; } } } { Il2CppChar L_45 = V_8; if ((((int32_t)L_45) == ((int32_t)((int32_t)34)))) { goto IL_0216; } } { Il2CppChar L_46 = V_8; if ((((int32_t)L_46) == ((int32_t)((int32_t)38)))) { goto IL_0238; } } { goto IL_04f8; } IL_00f1: { Il2CppChar L_47 = V_8; if ((((int32_t)L_47) == ((int32_t)((int32_t)39)))) { goto IL_0216; } } { Il2CppChar L_48 = V_8; if ((((int32_t)L_48) == ((int32_t)((int32_t)60)))) { goto IL_021f; } } { Il2CppChar L_49 = V_8; if ((((int32_t)L_49) == ((int32_t)((int32_t)62)))) { goto IL_0216; } } { goto IL_04f8; } IL_0111: { int32_t L_50 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_50, 1)); int32_t L_51 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_51, NULL); bool L_52 = __this->___normalize_24; if (!L_52) { goto IL_0042; } } { StringBuilder_t* L_53 = __this->___stringBuilder_61; NullCheck(L_53); StringBuilder_t* L_54; L_54 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_53, ((int32_t)32), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t* L_56 = (&L_55->___charPos_1); int32_t* L_57 = L_56; int32_t L_58 = *((int32_t*)L_57); *((int32_t*)L_57) = (int32_t)((int32_t)il2cpp_codegen_add(L_58, 1)); goto IL_0042; } IL_014a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = V_1; int32_t L_60 = V_0; NullCheck(L_59); int32_t L_61 = ((int32_t)il2cpp_codegen_add(L_60, 1)); uint16_t L_62 = (uint16_t)(L_59)->GetAt(static_cast(L_61)); if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)10))))) { goto IL_0192; } } { int32_t L_63 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_63, 2)); bool L_64 = __this->___normalize_24; if (!L_64) { goto IL_01d8; } } { StringBuilder_t* L_65 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_66 = (&__this->___ps_6); bool L_67 = L_66->___eolNormalized_19; G_B21_0 = L_65; if (L_67) { G_B22_0 = L_65; goto IL_0179; } } { G_B23_0 = _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; G_B23_1 = G_B21_0; goto IL_017e; } IL_0179: { G_B23_0 = _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA; G_B23_1 = G_B22_0; } IL_017e: { NullCheck(G_B23_1); StringBuilder_t* L_68; L_68 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B23_1, G_B23_0, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_69 = (&__this->___ps_6); int32_t L_70 = V_0; L_69->___charPos_1 = L_70; goto IL_01d8; } IL_0192: { int32_t L_71 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_72 = (&__this->___ps_6); int32_t L_73 = L_72->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_71, 1))) < ((int32_t)L_73))) { goto IL_01b2; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_74 = (&__this->___ps_6); bool L_75 = L_74->___isEof_15; if (!L_75) { goto IL_054a; } } IL_01b2: { int32_t L_76 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_76, 1)); bool L_77 = __this->___normalize_24; if (!L_77) { goto IL_01d8; } } { StringBuilder_t* L_78 = __this->___stringBuilder_61; NullCheck(L_78); StringBuilder_t* L_79; L_79 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_78, ((int32_t)32), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_80 = (&__this->___ps_6); int32_t L_81 = V_0; L_80->___charPos_1 = L_81; } IL_01d8: { int32_t L_82 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_82, NULL); goto IL_0042; } IL_01e4: { int32_t L_83 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_83, 1)); bool L_84 = __this->___normalize_24; if (!L_84) { goto IL_0042; } } { StringBuilder_t* L_85 = __this->___stringBuilder_61; NullCheck(L_85); StringBuilder_t* L_86; L_86 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_85, ((int32_t)32), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_87 = (&__this->___ps_6); int32_t* L_88 = (&L_87->___charPos_1); int32_t* L_89 = L_88; int32_t L_90 = *((int32_t*)L_89); *((int32_t*)L_89) = (int32_t)((int32_t)il2cpp_codegen_add(L_90, 1)); goto IL_0042; } IL_0216: { int32_t L_91 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_91, 1)); goto IL_0042; } IL_021f: { int32_t L_92 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_93; L_93 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(((int32_t)60), 0, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_92, _stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613, L_93, NULL); goto IL_054a; } IL_0238: { int32_t L_94 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_95 = (&__this->___ps_6); int32_t L_96 = L_95->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_94, L_96))) <= ((int32_t)0))) { goto IL_026d; } } { StringBuilder_t* L_97 = __this->___stringBuilder_61; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_98 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_99 = (&__this->___ps_6); int32_t L_100 = L_99->___charPos_1; int32_t L_101 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_102 = (&__this->___ps_6); int32_t L_103 = L_102->___charPos_1; NullCheck(L_97); StringBuilder_t* L_104; L_104 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_97, L_98, L_100, ((int32_t)il2cpp_codegen_subtract(L_101, L_103)), NULL); } IL_026d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_105 = (&__this->___ps_6); int32_t L_106 = V_0; L_105->___charPos_1 = L_106; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_107 = (&__this->___ps_6); int32_t L_108 = L_107->___entityId_18; V_6 = L_108; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_109 = (&__this->___ps_6); int32_t L_110 = L_109->___lineNo_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_111 = (&__this->___ps_6); int32_t L_112; L_112 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_111, NULL); LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0((&V_7), L_110, ((int32_t)il2cpp_codegen_add(L_112, 1)), NULL); int32_t L_113; L_113 = XmlTextReaderImpl_HandleEntityReference_mCDF9E4056C8508F64B66ABE7063D04D48DA64CA5(__this, (bool)1, 0, (&V_0), NULL); V_9 = L_113; int32_t L_114 = V_9; switch (L_114) { case 0: { goto IL_04e7; } case 1: { goto IL_04e7; } case 2: { goto IL_04e7; } case 3: { goto IL_04db; } case 4: { goto IL_04db; } case 5: { goto IL_04db; } case 6: { goto IL_02dd; } case 7: { goto IL_041d; } } } { goto IL_04db; } IL_02dd: { int32_t L_115 = __this->___parsingMode_65; if (L_115) { goto IL_03f5; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_116 = (&__this->___ps_6); int32_t L_117 = L_116->___entityId_18; int32_t L_118 = V_2; if ((!(((uint32_t)L_117) == ((uint32_t)L_118)))) { goto IL_03f5; } } { StringBuilder_t* L_119 = __this->___stringBuilder_61; NullCheck(L_119); int32_t L_120; L_120 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_119, NULL); int32_t L_121 = V_3; V_10 = ((int32_t)il2cpp_codegen_subtract(L_120, L_121)); int32_t L_122 = V_10; if ((((int32_t)L_122) <= ((int32_t)0))) { goto IL_034d; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_123 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_123); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_123, NULL); V_13 = L_123; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_124 = V_13; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_125 = V_4; NullCheck(L_124); L_124->___lineInfo_10 = L_125; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_126 = V_13; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_127 = ___attr2; NullCheck(L_127); int32_t L_128 = L_127->___depth_13; NullCheck(L_126); L_126->___depth_13 = ((int32_t)il2cpp_codegen_add(L_128, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_129 = V_13; StringBuilder_t* L_130 = __this->___stringBuilder_61; int32_t L_131 = V_3; int32_t L_132 = V_10; NullCheck(L_130); String_t* L_133; L_133 = StringBuilder_ToString_m8A0AC56824DF98812AFBCD745AC6C911873CA8C0(L_130, L_131, L_132, NULL); NullCheck(L_129); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_129, 3, L_133, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_134 = ___attr2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_135 = V_13; XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732(__this, L_134, L_135, (&V_5), NULL); } IL_034d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_136 = (&__this->___ps_6); int32_t* L_137 = (&L_136->___charPos_1); int32_t* L_138 = L_137; int32_t L_139 = *((int32_t*)L_138); *((int32_t*)L_138) = (int32_t)((int32_t)il2cpp_codegen_add(L_139, 1)); String_t* L_140; L_140 = XmlTextReaderImpl_ParseEntityName_m3E547DE2000F6AB699FF1052E470BDBEFAB11D11(__this, NULL); V_11 = L_140; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_141 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_141); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_141, NULL); V_12 = L_141; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_142 = V_12; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_143 = V_7; NullCheck(L_142); L_142->___lineInfo_10 = L_143; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_144 = V_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_145 = ___attr2; NullCheck(L_145); int32_t L_146 = L_145->___depth_13; NullCheck(L_144); L_144->___depth_13 = ((int32_t)il2cpp_codegen_add(L_146, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_147 = V_12; String_t* L_148 = V_11; NullCheck(L_147); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_147, 5, L_148, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_149 = ___attr2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_150 = V_12; XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732(__this, L_149, L_150, (&V_5), NULL); StringBuilder_t* L_151 = __this->___stringBuilder_61; NullCheck(L_151); StringBuilder_t* L_152; L_152 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_151, ((int32_t)38), NULL); StringBuilder_t* L_153 = __this->___stringBuilder_61; String_t* L_154 = V_11; NullCheck(L_153); StringBuilder_t* L_155; L_155 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_153, L_154, NULL); StringBuilder_t* L_156 = __this->___stringBuilder_61; NullCheck(L_156); StringBuilder_t* L_157; L_157 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_156, ((int32_t)59), NULL); StringBuilder_t* L_158 = __this->___stringBuilder_61; NullCheck(L_158); int32_t L_159; L_159 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_158, NULL); V_3 = L_159; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_160 = (&__this->___ps_6); int32_t L_161; L_161 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_160, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_162 = (&__this->___ps_6); int32_t L_163; L_163 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_162, NULL); LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E((&V_4), L_161, L_163, NULL); __this->___fullAttrCleanup_18 = (bool)1; goto IL_040c; } IL_03f5: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_164 = (&__this->___ps_6); int32_t* L_165 = (&L_164->___charPos_1); int32_t* L_166 = L_165; int32_t L_167 = *((int32_t*)L_166); *((int32_t*)L_166) = (int32_t)((int32_t)il2cpp_codegen_add(L_167, 1)); String_t* L_168; L_168 = XmlTextReaderImpl_ParseEntityName_m3E547DE2000F6AB699FF1052E470BDBEFAB11D11(__this, NULL); } IL_040c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_169 = (&__this->___ps_6); int32_t L_170 = L_169->___charPos_1; V_0 = L_170; goto IL_04e7; } IL_041d: { int32_t L_171 = __this->___parsingMode_65; if (L_171) { goto IL_04cd; } } { int32_t L_172 = V_6; int32_t L_173 = V_2; if ((!(((uint32_t)L_172) == ((uint32_t)L_173)))) { goto IL_04cd; } } { StringBuilder_t* L_174 = __this->___stringBuilder_61; NullCheck(L_174); int32_t L_175; L_175 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_174, NULL); int32_t L_176 = V_3; V_14 = ((int32_t)il2cpp_codegen_subtract(L_175, L_176)); int32_t L_177 = V_14; if ((((int32_t)L_177) <= ((int32_t)0))) { goto IL_0484; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_178 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_178); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_178, NULL); V_16 = L_178; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_179 = V_16; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_180 = V_4; NullCheck(L_179); L_179->___lineInfo_10 = L_180; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_181 = V_16; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_182 = ___attr2; NullCheck(L_182); int32_t L_183 = L_182->___depth_13; NullCheck(L_181); L_181->___depth_13 = ((int32_t)il2cpp_codegen_add(L_183, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_184 = V_16; StringBuilder_t* L_185 = __this->___stringBuilder_61; int32_t L_186 = V_3; int32_t L_187 = V_14; NullCheck(L_185); String_t* L_188; L_188 = StringBuilder_ToString_m8A0AC56824DF98812AFBCD745AC6C911873CA8C0(L_185, L_186, L_187, NULL); NullCheck(L_184); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_184, 3, L_188, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_189 = ___attr2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_190 = V_16; XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732(__this, L_189, L_190, (&V_5), NULL); } IL_0484: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_191 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_191); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_191, NULL); V_15 = L_191; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_192 = V_15; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_193 = V_7; NullCheck(L_192); L_192->___lineInfo_10 = L_193; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_194 = V_15; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_195 = ___attr2; NullCheck(L_195); int32_t L_196 = L_195->___depth_13; NullCheck(L_194); L_194->___depth_13 = ((int32_t)il2cpp_codegen_add(L_196, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_197 = V_15; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_198 = (&__this->___ps_6); RuntimeObject* L_199 = L_198->___entity_17; NullCheck(L_199); String_t* L_200; L_200 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdEntityInfo::get_Name() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_199); NullCheck(L_197); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_197, 5, L_200, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_201 = ___attr2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_202 = V_15; XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732(__this, L_201, L_202, (&V_5), NULL); __this->___fullAttrCleanup_18 = (bool)1; } IL_04cd: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_203 = (&__this->___ps_6); int32_t L_204 = L_203->___charPos_1; V_0 = L_204; goto IL_04e7; } IL_04db: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_205 = (&__this->___ps_6); int32_t L_206 = L_205->___charPos_1; V_0 = L_206; } IL_04e7: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_207 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_208 = L_207->___chars_0; V_1 = L_208; goto IL_0042; } IL_04f8: { int32_t L_209 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_210 = (&__this->___ps_6); int32_t L_211 = L_210->___charsUsed_2; if ((((int32_t)L_209) == ((int32_t)L_211))) { goto IL_054a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_212 = V_1; int32_t L_213 = V_0; NullCheck(L_212); int32_t L_214 = L_213; uint16_t L_215 = (uint16_t)(L_212)->GetAt(static_cast(L_214)); bool L_216; L_216 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_215, NULL); if (!L_216) { goto IL_0537; } } { int32_t L_217 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_218 = (&__this->___ps_6); int32_t L_219 = L_218->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_217, 1))) == ((int32_t)L_219))) { goto IL_054a; } } { int32_t L_220 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_220, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_221 = V_1; int32_t L_222 = V_0; NullCheck(L_221); int32_t L_223 = L_222; uint16_t L_224 = (uint16_t)(L_221)->GetAt(static_cast(L_223)); bool L_225; L_225 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_224, NULL); if (!L_225) { goto IL_0537; } } { int32_t L_226 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_226, 1)); goto IL_0042; } IL_0537: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_227 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_228 = (&__this->___ps_6); int32_t L_229 = L_228->___charsUsed_2; int32_t L_230 = V_0; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_227, L_229, L_230, NULL); } IL_054a: { int32_t L_231; L_231 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_231) { goto IL_0622; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_232 = (&__this->___ps_6); int32_t L_233 = L_232->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_234 = (&__this->___ps_6); int32_t L_235 = L_234->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_233, L_235))) <= ((int32_t)0))) { goto IL_059d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_236 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_237 = L_236->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_238 = (&__this->___ps_6); int32_t L_239 = L_238->___charPos_1; NullCheck(L_237); int32_t L_240 = L_239; uint16_t L_241 = (uint16_t)(L_237)->GetAt(static_cast(L_240)); if ((((int32_t)L_241) == ((int32_t)((int32_t)13)))) { goto IL_0622; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); goto IL_0622; } IL_059d: { bool L_242; L_242 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); if (L_242) { goto IL_05d7; } } { int32_t L_243 = __this->___fragmentType_46; if ((!(((uint32_t)L_243) == ((uint32_t)2)))) { goto IL_05cc; } } { int32_t L_244 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_245 = (&__this->___ps_6); int32_t L_246 = L_245->___entityId_18; if ((((int32_t)L_244) == ((int32_t)L_246))) { goto IL_063f; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral27EFD03821B8E8379AA7D14DB641482FB950DF7B, NULL); goto IL_063f; } IL_05cc: { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989, NULL); } IL_05d7: { bool L_247; L_247 = XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6(__this, (bool)1, NULL); if (!L_247) { goto IL_05eb; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72, NULL); } IL_05eb: { int32_t L_248 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_249 = (&__this->___ps_6); int32_t L_250 = L_249->___entityId_18; if ((!(((uint32_t)L_248) == ((uint32_t)L_250)))) { goto IL_0622; } } { StringBuilder_t* L_251 = __this->___stringBuilder_61; NullCheck(L_251); int32_t L_252; L_252 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_251, NULL); V_3 = L_252; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_253 = (&__this->___ps_6); int32_t L_254; L_254 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_253, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_255 = (&__this->___ps_6); int32_t L_256; L_256 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_255, NULL); LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E((&V_4), L_254, L_256, NULL); } IL_0622: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_257 = (&__this->___ps_6); int32_t L_258 = L_257->___charPos_1; V_0 = L_258; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_259 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_260 = L_259->___chars_0; V_1 = L_260; goto IL_0042; } IL_063f: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_261 = ___attr2; NullCheck(L_261); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_262 = L_261->___nextAttrValueChunk_17; if (!L_262) { goto IL_069b; } } { StringBuilder_t* L_263 = __this->___stringBuilder_61; NullCheck(L_263); int32_t L_264; L_264 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_263, NULL); int32_t L_265 = V_3; V_17 = ((int32_t)il2cpp_codegen_subtract(L_264, L_265)); int32_t L_266 = V_17; if ((((int32_t)L_266) <= ((int32_t)0))) { goto IL_069b; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_267 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_267); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_267, NULL); V_18 = L_267; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_268 = V_18; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_269 = V_4; NullCheck(L_268); L_268->___lineInfo_10 = L_269; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_270 = V_18; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_271 = ___attr2; NullCheck(L_271); int32_t L_272 = L_271->___depth_13; NullCheck(L_270); L_270->___depth_13 = ((int32_t)il2cpp_codegen_add(L_272, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_273 = V_18; StringBuilder_t* L_274 = __this->___stringBuilder_61; int32_t L_275 = V_3; int32_t L_276 = V_17; NullCheck(L_274); String_t* L_277; L_277 = StringBuilder_ToString_m8A0AC56824DF98812AFBCD745AC6C911873CA8C0(L_274, L_275, L_276, NULL); NullCheck(L_273); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_273, 3, L_277, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_278 = ___attr2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_279 = V_18; XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732(__this, L_278, L_279, (&V_5), NULL); } IL_069b: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_280 = (&__this->___ps_6); int32_t L_281 = V_0; L_280->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_281, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_282 = ___attr2; StringBuilder_t* L_283 = __this->___stringBuilder_61; NullCheck(L_283); String_t* L_284; L_284 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_283); NullCheck(L_282); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_282, L_284, NULL); StringBuilder_t* L_285 = __this->___stringBuilder_61; NullCheck(L_285); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_285, 0, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::AddAttributeChunkToList(System.Xml.XmlTextReaderImpl/NodeData,System.Xml.XmlTextReaderImpl/NodeData,System.Xml.XmlTextReaderImpl/NodeData&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AddAttributeChunkToList_mE5D3B89F3A19745540BD88DE17ACBF9CE7268732 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr0, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___chunk1, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** ___lastChunk2, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** L_0 = ___lastChunk2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = *((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF**)L_0); if (L_1) { goto IL_000f; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** L_2 = ___lastChunk2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = ___chunk1; *((RuntimeObject**)L_2) = (RuntimeObject*)L_3; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_3); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = ___attr0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = ___chunk1; NullCheck(L_4); L_4->___nextAttrValueChunk_17 = L_5; Il2CppCodeGenWriteBarrier((void**)(&L_4->___nextAttrValueChunk_17), (void*)L_5); return; } IL_000f: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** L_6 = ___lastChunk2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = *((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF**)L_6); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = ___chunk1; NullCheck(L_7); L_7->___nextAttrValueChunk_17 = L_8; Il2CppCodeGenWriteBarrier((void**)(&L_7->___nextAttrValueChunk_17), (void*)L_8); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF** L_9 = ___lastChunk2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = ___chunk1; *((RuntimeObject**)L_9) = (RuntimeObject*)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_9, (void*)(RuntimeObject*)L_10); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseText_mA9F988A11AF15A5DB7084BC5390EFC570E43497B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; bool V_5 = false; int32_t V_6 = 0; int32_t G_B28_0 = 0; { V_2 = 0; int32_t L_0 = __this->___parsingMode_65; if (!L_0) { goto IL_001d; } } IL_000a: { bool L_1; L_1 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); if (!L_1) { goto IL_000a; } } { goto IL_0242; } IL_001d: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4; L_4 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_3, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6; L_6 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_5, NULL); NullCheck(L_2); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_2, L_4, L_6, NULL); bool L_7; L_7 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); if (!L_7) { goto IL_007f; } } { int32_t L_8 = V_1; int32_t L_9 = V_0; if (!((int32_t)il2cpp_codegen_subtract(L_8, L_9))) { goto IL_0242; } } { int32_t L_10 = V_2; int32_t L_11; L_11 = XmlTextReaderImpl_GetTextNodeType_mD21D8EAFAE32988277E39963DC7A0F978FDE9062(__this, L_10, NULL); V_3 = L_11; int32_t L_12 = V_3; if (!L_12) { goto IL_0242; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = __this->___curNode_11; int32_t L_14 = V_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = L_15->___chars_0; int32_t L_17 = V_0; int32_t L_18 = V_1; int32_t L_19 = V_0; NullCheck(L_13); NodeData_SetValueNode_m50F48B9511DD8F6BDB6D49CFB0B3BD799D6AD0F1(L_13, L_14, L_16, L_17, ((int32_t)il2cpp_codegen_subtract(L_18, L_19)), NULL); return (bool)1; } IL_007f: { bool L_20 = __this->___v1Compat_37; if (!L_20) { goto IL_011e; } } IL_008a: { int32_t L_21 = V_1; int32_t L_22 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_21, L_22))) <= ((int32_t)0))) { goto IL_00ab; } } { StringBuilder_t* L_23 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = L_24->___chars_0; int32_t L_26 = V_0; int32_t L_27 = V_1; int32_t L_28 = V_0; NullCheck(L_23); StringBuilder_t* L_29; L_29 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_23, L_25, L_26, ((int32_t)il2cpp_codegen_subtract(L_27, L_28)), NULL); } IL_00ab: { bool L_30; L_30 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); if (!L_30) { goto IL_008a; } } { int32_t L_31 = V_1; int32_t L_32 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_31, L_32))) <= ((int32_t)0))) { goto IL_00da; } } { StringBuilder_t* L_33 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = L_34->___chars_0; int32_t L_36 = V_0; int32_t L_37 = V_1; int32_t L_38 = V_0; NullCheck(L_33); StringBuilder_t* L_39; L_39 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_33, L_35, L_36, ((int32_t)il2cpp_codegen_subtract(L_37, L_38)), NULL); } IL_00da: { int32_t L_40 = V_2; int32_t L_41; L_41 = XmlTextReaderImpl_GetTextNodeType_mD21D8EAFAE32988277E39963DC7A0F978FDE9062(__this, L_40, NULL); V_4 = L_41; int32_t L_42 = V_4; if (L_42) { goto IL_00f8; } } { StringBuilder_t* L_43 = __this->___stringBuilder_61; NullCheck(L_43); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_43, 0, NULL); goto IL_0242; } IL_00f8: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_44 = __this->___curNode_11; int32_t L_45 = V_4; StringBuilder_t* L_46 = __this->___stringBuilder_61; NullCheck(L_46); String_t* L_47; L_47 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_46); NullCheck(L_44); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_44, L_45, L_47, NULL); StringBuilder_t* L_48 = __this->___stringBuilder_61; NullCheck(L_48); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_48, 0, NULL); return (bool)1; } IL_011e: { V_5 = (bool)0; int32_t L_49 = V_2; if ((((int32_t)L_49) <= ((int32_t)((int32_t)32)))) { goto IL_0157; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_50 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_51 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_52 = L_51->___chars_0; int32_t L_53 = V_0; int32_t L_54 = V_1; int32_t L_55 = V_0; NullCheck(L_50); NodeData_SetValueNode_m50F48B9511DD8F6BDB6D49CFB0B3BD799D6AD0F1(L_50, 3, L_52, L_53, ((int32_t)il2cpp_codegen_subtract(L_54, L_55)), NULL); int32_t L_56 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_56; __this->___parsingFunction_7 = ((int32_t)21); return (bool)1; } IL_0157: { int32_t L_57 = V_1; int32_t L_58 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_57, L_58))) <= ((int32_t)0))) { goto IL_0178; } } { StringBuilder_t* L_59 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_60 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_61 = L_60->___chars_0; int32_t L_62 = V_0; int32_t L_63 = V_1; int32_t L_64 = V_0; NullCheck(L_59); StringBuilder_t* L_65; L_65 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_59, L_61, L_62, ((int32_t)il2cpp_codegen_subtract(L_63, L_64)), NULL); } IL_0178: { bool L_66; L_66 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); V_5 = L_66; int32_t L_67 = V_1; int32_t L_68 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_67, L_68))) <= ((int32_t)0))) { goto IL_01a7; } } { StringBuilder_t* L_69 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_70 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_71 = L_70->___chars_0; int32_t L_72 = V_0; int32_t L_73 = V_1; int32_t L_74 = V_0; NullCheck(L_69); StringBuilder_t* L_75; L_75 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_69, L_71, L_72, ((int32_t)il2cpp_codegen_subtract(L_73, L_74)), NULL); } IL_01a7: { bool L_76 = V_5; if (L_76) { goto IL_01c2; } } { int32_t L_77 = V_2; if ((((int32_t)L_77) > ((int32_t)((int32_t)32)))) { goto IL_01c2; } } { StringBuilder_t* L_78 = __this->___stringBuilder_61; NullCheck(L_78); int32_t L_79; L_79 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_78, NULL); if ((((int32_t)L_79) < ((int32_t)((int32_t)4096)))) { goto IL_0178; } } IL_01c2: { StringBuilder_t* L_80 = __this->___stringBuilder_61; NullCheck(L_80); int32_t L_81; L_81 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_80, NULL); if ((((int32_t)L_81) < ((int32_t)((int32_t)4096)))) { goto IL_01d7; } } { G_B28_0 = 3; goto IL_01de; } IL_01d7: { int32_t L_82 = V_2; int32_t L_83; L_83 = XmlTextReaderImpl_GetTextNodeType_mD21D8EAFAE32988277E39963DC7A0F978FDE9062(__this, L_82, NULL); G_B28_0 = ((int32_t)(L_83)); } IL_01de: { V_6 = G_B28_0; int32_t L_84 = V_6; if (L_84) { goto IL_0204; } } { StringBuilder_t* L_85 = __this->___stringBuilder_61; NullCheck(L_85); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_85, 0, NULL); bool L_86 = V_5; if (L_86) { goto IL_0242; } } IL_01f4: { bool L_87; L_87 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); if (!L_87) { goto IL_01f4; } } { goto IL_0242; } IL_0204: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_88 = __this->___curNode_11; int32_t L_89 = V_6; StringBuilder_t* L_90 = __this->___stringBuilder_61; NullCheck(L_90); String_t* L_91; L_91 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_90); NullCheck(L_88); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_88, L_89, L_91, NULL); StringBuilder_t* L_92 = __this->___stringBuilder_61; NullCheck(L_92); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_92, 0, NULL); bool L_93 = V_5; if (L_93) { goto IL_0240; } } { int32_t L_94 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_94; __this->___parsingFunction_7 = ((int32_t)21); } IL_0240: { return (bool)1; } IL_0242: { int32_t L_95 = __this->___parsingFunction_7; if ((!(((uint32_t)L_95) == ((uint32_t)((int32_t)16))))) { goto IL_0260; } } { XmlTextReaderImpl_SetupEndEntityNodeInContent_m5DF2EE9E86D586C0DD11D845EEA3BCC0ACFB47BE(__this, NULL); int32_t L_96 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_96; return (bool)1; } IL_0260: { int32_t L_97 = __this->___parsingFunction_7; if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)13))))) { goto IL_027e; } } { int32_t L_98 = __this->___nextNextParsingFunction_9; __this->___parsingFunction_7 = L_98; XmlTextReaderImpl_ParseEntityReference_m88F7B5D5FA448C8728068D1440DC9849BD1F0815(__this, NULL); return (bool)1; } IL_027e: { return (bool)0; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseText(System.Int32&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___startPos0, int32_t* ___endPos1, int32_t* ___outOrChars2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC592433F40777E06F184EC2C93B0E9661B2FC834); s_Il2CppMethodInitialized = true; } CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; Il2CppChar V_5 = 0x0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; Il2CppChar V_10 = 0x0; int32_t V_11 = 0; int32_t V_12 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; V_0 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; V_1 = L_3; V_2 = 0; V_3 = (-1); int32_t* L_4 = ___outOrChars2; int32_t L_5 = *((int32_t*)L_4); V_4 = L_5; goto IL_002d; } IL_0022: { int32_t L_6 = V_4; Il2CppChar L_7 = V_5; V_4 = ((int32_t)(L_6|(int32_t)L_7)); int32_t L_8 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1)); } IL_002d: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_9 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = L_9->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_0; int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast(L_13)); uint16_t L_15 = L_14; V_5 = L_15; NullCheck(L_10); uint16_t L_16 = L_15; uint8_t L_17 = (L_10)->GetAt(static_cast(L_16)); if (((int32_t)((int32_t)L_17&((int32_t)64)))) { goto IL_0022; } } { Il2CppChar L_18 = V_5; if ((!(((uint32_t)L_18) <= ((uint32_t)((int32_t)38))))) { goto IL_0076; } } { Il2CppChar L_19 = V_5; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_19, ((int32_t)9)))) { case 0: { goto IL_008d; } case 1: { goto IL_0093; } case 2: { goto IL_02b4; } case 3: { goto IL_02b4; } case 4: { goto IL_00a0; } } } { Il2CppChar L_20 = V_5; if ((((int32_t)L_20) == ((int32_t)((int32_t)38)))) { goto IL_0148; } } { goto IL_02b4; } IL_0076: { Il2CppChar L_21 = V_5; if ((((int32_t)L_21) == ((int32_t)((int32_t)60)))) { goto IL_042f; } } { Il2CppChar L_22 = V_5; if ((((int32_t)L_22) == ((int32_t)((int32_t)93)))) { goto IL_0266; } } { goto IL_02b4; } IL_008d: { int32_t L_23 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1)); goto IL_002d; } IL_0093: { int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1)); int32_t L_25 = V_1; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_25, NULL); goto IL_002d; } IL_00a0: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = V_0; int32_t L_27 = V_1; NullCheck(L_26); int32_t L_28 = ((int32_t)il2cpp_codegen_add(L_27, 1)); uint16_t L_29 = (uint16_t)(L_26)->GetAt(static_cast(L_28)); if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)10))))) { goto IL_0106; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_30 = (&__this->___ps_6); bool L_31 = L_30->___eolNormalized_19; if (L_31) { goto IL_0100; } } { int32_t L_32 = __this->___parsingMode_65; if (L_32) { goto IL_0100; } } { int32_t L_33 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); int32_t L_35 = L_34->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_33, L_35))) <= ((int32_t)0))) { goto IL_00f0; } } { int32_t L_36 = V_2; if (L_36) { goto IL_00d7; } } { V_2 = 1; int32_t L_37 = V_1; V_3 = L_37; goto IL_0100; } IL_00d7: { int32_t L_38 = V_3; int32_t L_39 = V_2; int32_t L_40 = V_3; int32_t L_41 = V_1; int32_t L_42 = V_3; int32_t L_43 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_38, L_39)), L_40, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_41, L_42)), L_43)), NULL); int32_t L_44 = V_1; int32_t L_45 = V_2; V_3 = ((int32_t)il2cpp_codegen_subtract(L_44, L_45)); int32_t L_46 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_46, 1)); goto IL_0100; } IL_00f0: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t* L_48 = (&L_47->___charPos_1); int32_t* L_49 = L_48; int32_t L_50 = *((int32_t*)L_49); *((int32_t*)L_49) = (int32_t)((int32_t)il2cpp_codegen_add(L_50, 1)); } IL_0100: { int32_t L_51 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_51, 2)); goto IL_013c; } IL_0106: { int32_t L_52 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = L_53->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_52, 1))) < ((int32_t)L_54))) { goto IL_0126; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); bool L_56 = L_55->___isEof_15; if (!L_56) { goto IL_0366; } } IL_0126: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_57 = (&__this->___ps_6); bool L_58 = L_57->___eolNormalized_19; if (L_58) { goto IL_0138; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = V_0; int32_t L_60 = V_1; NullCheck(L_59); (L_59)->SetAt(static_cast(L_60), (Il2CppChar)((int32_t)10)); } IL_0138: { int32_t L_61 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_61, 1)); } IL_013c: { int32_t L_62 = V_1; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_62, NULL); goto IL_002d; } IL_0148: { int32_t L_63 = V_1; int32_t L_64; L_64 = XmlTextReaderImpl_ParseCharRefInline_m36277AF9F85A6323D8061187EAA94862923DB1D9(__this, L_63, (&V_7), (&V_8), NULL); int32_t L_65 = L_64; V_6 = L_65; if ((((int32_t)L_65) <= ((int32_t)0))) { goto IL_01b2; } } { int32_t L_66 = V_2; if ((((int32_t)L_66) <= ((int32_t)0))) { goto IL_016c; } } { int32_t L_67 = V_3; int32_t L_68 = V_2; int32_t L_69 = V_3; int32_t L_70 = V_1; int32_t L_71 = V_3; int32_t L_72 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_67, L_68)), L_69, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_70, L_71)), L_72)), NULL); } IL_016c: { int32_t L_73 = V_1; int32_t L_74 = V_2; V_3 = ((int32_t)il2cpp_codegen_subtract(L_73, L_74)); int32_t L_75 = V_2; int32_t L_76 = V_6; int32_t L_77 = V_1; int32_t L_78 = V_7; V_2 = ((int32_t)il2cpp_codegen_add(L_75, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_76, L_77)), L_78)))); int32_t L_79 = V_6; V_1 = L_79; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_80 = (&__this->___xmlCharType_5); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_81 = V_0; int32_t L_82 = V_6; int32_t L_83 = V_7; NullCheck(L_81); int32_t L_84 = ((int32_t)il2cpp_codegen_subtract(L_82, L_83)); uint16_t L_85 = (uint16_t)(L_81)->GetAt(static_cast(L_84)); bool L_86; L_86 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_80, L_85, NULL); if (!L_86) { goto IL_01a3; } } { bool L_87 = __this->___v1Compat_37; if (!L_87) { goto IL_002d; } } { int32_t L_88 = V_8; if (L_88) { goto IL_002d; } } IL_01a3: { int32_t L_89 = V_4; V_4 = ((int32_t)(L_89|((int32_t)255))); goto IL_002d; } IL_01b2: { int32_t L_90 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_91 = (&__this->___ps_6); int32_t L_92 = L_91->___charPos_1; if ((((int32_t)L_90) > ((int32_t)L_92))) { goto IL_042f; } } { int32_t L_93; L_93 = XmlTextReaderImpl_HandleEntityReference_mCDF9E4056C8508F64B66ABE7063D04D48DA64CA5(__this, (bool)0, 0, (&V_1), NULL); V_9 = L_93; int32_t L_94 = V_9; switch (L_94) { case 0: { goto IL_020d; } case 1: { goto IL_0221; } case 2: { goto IL_0221; } case 3: { goto IL_0249; } case 4: { goto IL_0249; } case 5: { goto IL_0249; } case 6: { goto IL_01f4; } } } { goto IL_0249; } IL_01f4: { int32_t L_95 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_95; __this->___parsingFunction_7 = ((int32_t)13); goto IL_0423; } IL_020d: { bool L_96 = __this->___v1Compat_37; if (!L_96) { goto IL_0221; } } { int32_t L_97 = V_4; V_4 = ((int32_t)(L_97|((int32_t)255))); goto IL_0255; } IL_0221: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_98 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_99 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_100 = L_99->___chars_0; int32_t L_101 = V_1; NullCheck(L_100); int32_t L_102 = ((int32_t)il2cpp_codegen_subtract(L_101, 1)); uint16_t L_103 = (uint16_t)(L_100)->GetAt(static_cast(L_102)); bool L_104; L_104 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_98, L_103, NULL); if (L_104) { goto IL_0255; } } { int32_t L_105 = V_4; V_4 = ((int32_t)(L_105|((int32_t)255))); goto IL_0255; } IL_0249: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_106 = (&__this->___ps_6); int32_t L_107 = L_106->___charPos_1; V_1 = L_107; } IL_0255: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_108 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_109 = L_108->___chars_0; V_0 = L_109; goto IL_002d; } IL_0266: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_110 = (&__this->___ps_6); int32_t L_111 = L_110->___charsUsed_2; int32_t L_112 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_111, L_112))) >= ((int32_t)3))) { goto IL_0286; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_113 = (&__this->___ps_6); bool L_114 = L_113->___isEof_15; if (!L_114) { goto IL_0366; } } IL_0286: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_115 = V_0; int32_t L_116 = V_1; NullCheck(L_115); int32_t L_117 = ((int32_t)il2cpp_codegen_add(L_116, 1)); uint16_t L_118 = (uint16_t)(L_115)->GetAt(static_cast(L_117)); if ((!(((uint32_t)L_118) == ((uint32_t)((int32_t)93))))) { goto IL_02a4; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_119 = V_0; int32_t L_120 = V_1; NullCheck(L_119); int32_t L_121 = ((int32_t)il2cpp_codegen_add(L_120, 2)); uint16_t L_122 = (uint16_t)(L_119)->GetAt(static_cast(L_121)); if ((!(((uint32_t)L_122) == ((uint32_t)((int32_t)62))))) { goto IL_02a4; } } { int32_t L_123 = V_1; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_123, _stringLiteralC592433F40777E06F184EC2C93B0E9661B2FC834, NULL); } IL_02a4: { int32_t L_124 = V_4; V_4 = ((int32_t)(L_124|((int32_t)93))); int32_t L_125 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_125, 1)); goto IL_002d; } IL_02b4: { int32_t L_126 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_127 = (&__this->___ps_6); int32_t L_128 = L_127->___charsUsed_2; if ((((int32_t)L_126) == ((int32_t)L_128))) { goto IL_0366; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_129 = V_0; int32_t L_130 = V_1; NullCheck(L_129); int32_t L_131 = L_130; uint16_t L_132 = (uint16_t)(L_129)->GetAt(static_cast(L_131)); V_10 = L_132; Il2CppChar L_133 = V_10; bool L_134; L_134 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_133, NULL); if (!L_134) { goto IL_0304; } } { int32_t L_135 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_136 = (&__this->___ps_6); int32_t L_137 = L_136->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_135, 1))) == ((int32_t)L_137))) { goto IL_0366; } } { int32_t L_138 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_138, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_139 = V_0; int32_t L_140 = V_1; NullCheck(L_139); int32_t L_141 = L_140; uint16_t L_142 = (uint16_t)(L_139)->GetAt(static_cast(L_141)); bool L_143; L_143 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_142, NULL); if (!L_143) { goto IL_0304; } } { int32_t L_144 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_144, 1)); int32_t L_145 = V_4; Il2CppChar L_146 = V_10; V_4 = ((int32_t)(L_145|(int32_t)L_146)); goto IL_002d; } IL_0304: { int32_t L_147 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_148 = (&__this->___ps_6); int32_t L_149 = L_148->___charPos_1; V_11 = ((int32_t)il2cpp_codegen_subtract(L_147, L_149)); int32_t L_150 = V_1; bool L_151; L_151 = XmlTextReaderImpl_ZeroEndingStream_m24AA1FACA8FA96D3A362C20BF6A8D49A0A9DC1C4(__this, L_150, NULL); if (!L_151) { goto IL_033c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_152 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_153 = L_152->___chars_0; V_0 = L_153; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_154 = (&__this->___ps_6); int32_t L_155 = L_154->___charPos_1; int32_t L_156 = V_11; V_1 = ((int32_t)il2cpp_codegen_add(L_155, L_156)); goto IL_042f; } IL_033c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_157 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_158 = L_157->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_159 = (&__this->___ps_6); int32_t L_160 = L_159->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_161 = (&__this->___ps_6); int32_t L_162 = L_161->___charPos_1; int32_t L_163 = V_11; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_158, L_160, ((int32_t)il2cpp_codegen_add(L_162, L_163)), NULL); } IL_0366: { int32_t L_164 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_165 = (&__this->___ps_6); int32_t L_166 = L_165->___charPos_1; if ((((int32_t)L_164) > ((int32_t)L_166))) { goto IL_042f; } } { int32_t L_167; L_167 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_167) { goto IL_0406; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_168 = (&__this->___ps_6); int32_t L_169 = L_168->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_170 = (&__this->___ps_6); int32_t L_171 = L_170->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_169, L_171))) <= ((int32_t)0))) { goto IL_03df; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_172 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_173 = L_172->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_174 = (&__this->___ps_6); int32_t L_175 = L_174->___charPos_1; NullCheck(L_173); int32_t L_176 = L_175; uint16_t L_177 = (uint16_t)(L_173)->GetAt(static_cast(L_176)); if ((((int32_t)L_177) == ((int32_t)((int32_t)13)))) { goto IL_0406; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_178 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_179 = L_178->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_180 = (&__this->___ps_6); int32_t L_181 = L_180->___charPos_1; NullCheck(L_179); int32_t L_182 = L_181; uint16_t L_183 = (uint16_t)(L_179)->GetAt(static_cast(L_182)); if ((((int32_t)L_183) == ((int32_t)((int32_t)93)))) { goto IL_0406; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); goto IL_0406; } IL_03df: { bool L_184; L_184 = XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944(__this, NULL); if (!L_184) { goto IL_0423; } } { bool L_185; L_185 = XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6(__this, (bool)1, NULL); if (!L_185) { goto IL_0406; } } { int32_t L_186 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_186; __this->___parsingFunction_7 = ((int32_t)16); goto IL_0423; } IL_0406: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_187 = (&__this->___ps_6); int32_t L_188 = L_187->___charPos_1; V_1 = L_188; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_189 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_190 = L_189->___chars_0; V_0 = L_190; goto IL_002d; } IL_0423: { int32_t* L_191 = ___startPos0; int32_t* L_192 = ___endPos1; int32_t L_193 = V_1; int32_t L_194 = L_193; V_12 = L_194; *((int32_t*)L_192) = (int32_t)L_194; int32_t L_195 = V_12; *((int32_t*)L_191) = (int32_t)L_195; return (bool)1; } IL_042f: { int32_t L_196 = __this->___parsingMode_65; if (L_196) { goto IL_044a; } } { int32_t L_197 = V_2; if ((((int32_t)L_197) <= ((int32_t)0))) { goto IL_044a; } } { int32_t L_198 = V_3; int32_t L_199 = V_2; int32_t L_200 = V_3; int32_t L_201 = V_1; int32_t L_202 = V_3; int32_t L_203 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_198, L_199)), L_200, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_201, L_202)), L_203)), NULL); } IL_044a: { int32_t* L_204 = ___startPos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_205 = (&__this->___ps_6); int32_t L_206 = L_205->___charPos_1; *((int32_t*)L_204) = (int32_t)L_206; int32_t* L_207 = ___endPos1; int32_t L_208 = V_1; int32_t L_209 = V_2; *((int32_t*)L_207) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_208, L_209)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_210 = (&__this->___ps_6); int32_t L_211 = V_1; L_210->___charPos_1 = L_211; int32_t* L_212 = ___outOrChars2; int32_t L_213 = V_4; *((int32_t*)L_212) = (int32_t)L_213; Il2CppChar L_214 = V_5; return (bool)((((int32_t)L_214) == ((int32_t)((int32_t)60)))? 1 : 0); } } // System.Void System.Xml.XmlTextReaderImpl::FinishPartialValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishPartialValue_m1A6AB6EC08D3B450E847DCBA6AE4E4311DF2F045 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; int32_t L_1 = __this->___readValueOffset_70; StringBuilder_t* L_2 = __this->___stringBuilder_61; NullCheck(L_0); NodeData_CopyTo_m9D59E5E6EBD3C691A34AC2ADD32FB6C914AB24C2(L_0, L_1, L_2, NULL); V_2 = 0; goto IL_0036; } IL_001b: { StringBuilder_t* L_3 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4->___chars_0; int32_t L_6 = V_0; int32_t L_7 = V_1; int32_t L_8 = V_0; NullCheck(L_3); StringBuilder_t* L_9; L_9 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_3, L_5, L_6, ((int32_t)il2cpp_codegen_subtract(L_7, L_8)), NULL); } IL_0036: { bool L_10; L_10 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); if (!L_10) { goto IL_001b; } } { StringBuilder_t* L_11 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = L_12->___chars_0; int32_t L_14 = V_0; int32_t L_15 = V_1; int32_t L_16 = V_0; NullCheck(L_11); StringBuilder_t* L_17; L_17 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_11, L_13, L_14, ((int32_t)il2cpp_codegen_subtract(L_15, L_16)), NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_18 = __this->___curNode_11; StringBuilder_t* L_19 = __this->___stringBuilder_61; NullCheck(L_19); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_19); NullCheck(L_18); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_18, L_20, NULL); StringBuilder_t* L_21 = __this->___stringBuilder_61; NullCheck(L_21); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_21, 0, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishOtherValueIterator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishOtherValueIterator_mF20DB1AE74812FFDF3A6C6859213BD945E182555 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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 V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = __this->___parsingFunction_7; V_0 = L_0; int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)22)))) { case 0: { goto IL_00dd; } case 1: { goto IL_0021; } case 2: { goto IL_006f; } case 3: { goto IL_006f; } } } { return; } IL_0021: { int32_t L_2 = __this->___incReadState_50; if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)11))))) { goto IL_003a; } } { XmlTextReaderImpl_FinishPartialValue_m1A6AB6EC08D3B450E847DCBA6AE4E4311DF2F045(__this, NULL); __this->___incReadState_50 = ((int32_t)10); return; } IL_003a: { int32_t L_3 = __this->___readValueOffset_70; if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_00dd; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = __this->___curNode_11; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = __this->___curNode_11; NullCheck(L_5); String_t* L_6; L_6 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_5, NULL); int32_t L_7 = __this->___readValueOffset_70; NullCheck(L_6); String_t* L_8; L_8 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_6, L_7, NULL); NullCheck(L_4); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_4, L_8, NULL); __this->___readValueOffset_70 = 0; return; } IL_006f: { int32_t L_9 = __this->___incReadState_50; V_1 = L_9; int32_t L_10 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, ((int32_t)12)))) { case 0: { goto IL_009b; } case 1: { goto IL_008c; } case 2: { goto IL_00cd; } } } { return; } IL_008c: { XmlTextReaderImpl_FinishPartialValue_m1A6AB6EC08D3B450E847DCBA6AE4E4311DF2F045(__this, NULL); __this->___incReadState_50 = ((int32_t)12); return; } IL_009b: { int32_t L_11 = __this->___readValueOffset_70; if ((((int32_t)L_11) <= ((int32_t)0))) { goto IL_00dd; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = __this->___curNode_11; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = __this->___curNode_11; NullCheck(L_13); String_t* L_14; L_14 = NodeData_get_StringValue_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624(L_13, NULL); int32_t L_15 = __this->___readValueOffset_70; NullCheck(L_14); String_t* L_16; L_16 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_14, L_15, NULL); NullCheck(L_12); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_12, L_16, NULL); __this->___readValueOffset_70 = 0; return; } IL_00cd: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_17 = __this->___curNode_11; String_t* L_18 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_17); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_17, L_18, NULL); } IL_00dd: { return; } } // System.Void System.Xml.XmlTextReaderImpl::SkipPartialTextValue() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipPartialTextValue_mB4F56CA02982F525CBE1ABBB78D16F151DEC665A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { V_2 = 0; int32_t L_0 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_0; } IL_000e: { bool L_1; L_1 = XmlTextReaderImpl_ParseText_mD6C9C9F476B097E4368F2D6ED2C60FDEAB064056(__this, (&V_0), (&V_1), (&V_2), NULL); if (!L_1) { goto IL_000e; } } { return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishReadValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishReadValueChunk_mA0FC504DC95E81D070F51567BEFEAAA7A68FB187 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { __this->___readValueOffset_70 = 0; int32_t L_0 = __this->___incReadState_50; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)11))))) { goto IL_0018; } } { XmlTextReaderImpl_SkipPartialTextValue_mB4F56CA02982F525CBE1ABBB78D16F151DEC665A(__this, NULL); return; } IL_0018: { int32_t L_1 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_1; int32_t L_2 = __this->___nextNextParsingFunction_9; __this->___nextParsingFunction_8 = L_2; return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishReadContentAsBinary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { __this->___readValueOffset_70 = 0; int32_t L_0 = __this->___incReadState_50; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)13))))) { goto IL_0019; } } { XmlTextReaderImpl_SkipPartialTextValue_mB4F56CA02982F525CBE1ABBB78D16F151DEC665A(__this, NULL); goto IL_0031; } IL_0019: { int32_t L_1 = __this->___nextParsingFunction_8; __this->___parsingFunction_7 = L_1; int32_t L_2 = __this->___nextNextParsingFunction_9; __this->___nextParsingFunction_8 = L_2; } IL_0031: { int32_t L_3 = __this->___incReadState_50; if ((((int32_t)L_3) == ((int32_t)((int32_t)14)))) { goto IL_0044; } } IL_003b: { bool L_4; L_4 = XmlTextReaderImpl_MoveToNextContentNode_m169F81C680109280A2F1E6DBC5D543A94315D772(__this, (bool)1, NULL); if (L_4) { goto IL_003b; } } IL_0044: { return; } } // System.Void System.Xml.XmlTextReaderImpl::FinishReadElementContentAsBinary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishReadElementContentAsBinary_mD248232D6E06181EB68309925A5A2FA290A190BA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50709161A683107F88DF833963D6907320EB2D94); s_Il2CppMethodInitialized = true; } { XmlTextReaderImpl_FinishReadContentAsBinary_mBA225166E1792864F08535B02E0AD783C1B6F1E3(__this, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; if ((((int32_t)L_1) == ((int32_t)((int32_t)15)))) { goto IL_0036; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; NullCheck(L_2); int32_t* L_3 = (&L_2->___type_1); Il2CppFakeBox L_4(XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var, L_3); String_t* L_5; L_5 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_4), NULL); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteral50709161A683107F88DF833963D6907320EB2D94, L_5, NULL); } IL_0036: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___outerReader_75; NullCheck(L_6); bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_6); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseRootLevelWhitespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseRootLevelWhitespace_m257220A2F345BCA0D16CBFB1C2D4D276CBACB5DB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral887708FAE81F8854FED4472593567E230376CF20); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0; L_0 = XmlTextReaderImpl_GetWhitespaceType_m742B2D50EDE39B9E1D98E0E6EA61A87C459EF2C7(__this, NULL); V_0 = L_0; int32_t L_1 = V_0; if (L_1) { goto IL_005e; } } { int32_t L_2; L_2 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___charPos_1; NullCheck(L_4); int32_t L_7 = L_6; uint16_t L_8 = (uint16_t)(L_4)->GetAt(static_cast(L_7)); if ((((int32_t)L_8) == ((int32_t)((int32_t)60)))) { goto IL_005c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = L_9->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); int32_t L_12 = L_11->___charPos_1; if (!((int32_t)il2cpp_codegen_subtract(L_10, L_12))) { goto IL_005c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = L_13->___charPos_1; bool L_15; L_15 = XmlTextReaderImpl_ZeroEndingStream_m24AA1FACA8FA96D3A362C20BF6A8D49A0A9DC1C4(__this, L_14, NULL); if (!L_15) { goto IL_0108; } } IL_005c: { return (bool)0; } IL_005e: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18; L_18 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_17, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); int32_t L_20; L_20 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_19, NULL); NullCheck(L_16); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_16, L_18, L_20, NULL); StringBuilder_t* L_21 = __this->___stringBuilder_61; int32_t L_22; L_22 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, L_21, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = L_23->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); int32_t L_26 = L_25->___charPos_1; NullCheck(L_24); int32_t L_27 = L_26; uint16_t L_28 = (uint16_t)(L_24)->GetAt(static_cast(L_27)); if ((((int32_t)L_28) == ((int32_t)((int32_t)60)))) { goto IL_00d3; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); int32_t L_30 = L_29->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); int32_t L_32 = L_31->___charPos_1; if (!((int32_t)il2cpp_codegen_subtract(L_30, L_32))) { goto IL_00d3; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_33 = (&__this->___ps_6); int32_t L_34 = L_33->___charPos_1; bool L_35; L_35 = XmlTextReaderImpl_ZeroEndingStream_m24AA1FACA8FA96D3A362C20BF6A8D49A0A9DC1C4(__this, L_34, NULL); if (!L_35) { goto IL_0108; } } IL_00d3: { StringBuilder_t* L_36 = __this->___stringBuilder_61; NullCheck(L_36); int32_t L_37; L_37 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_36, NULL); if ((((int32_t)L_37) <= ((int32_t)0))) { goto IL_0106; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_38 = __this->___curNode_11; int32_t L_39 = V_0; StringBuilder_t* L_40 = __this->___stringBuilder_61; NullCheck(L_40); String_t* L_41; L_41 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_40); NullCheck(L_38); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_38, L_39, L_41, NULL); StringBuilder_t* L_42 = __this->___stringBuilder_61; NullCheck(L_42); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_42, 0, NULL); return (bool)1; } IL_0106: { return (bool)0; } IL_0108: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_43 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_44 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_45 = L_44->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_46 = (&__this->___ps_6); int32_t L_47 = L_46->___charPos_1; NullCheck(L_45); int32_t L_48 = L_47; uint16_t L_49 = (uint16_t)(L_45)->GetAt(static_cast(L_48)); bool L_50; L_50 = XmlCharType_IsCharData_m39C87F830CD89F4F0029AA0338BB9AB5EFCC1AF5(L_43, L_49, NULL); if (!L_50) { goto IL_0139; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral887708FAE81F8854FED4472593567E230376CF20, NULL); goto IL_0160; } IL_0139: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_51 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_52 = L_51->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = L_53->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t L_56 = L_55->___charPos_1; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_52, L_54, L_56, NULL); } IL_0160: { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::ParseEntityReference() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseEntityReference_m88F7B5D5FA448C8728068D1440DC9849BD1F0815 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t* L_1 = (&L_0->___charPos_1); int32_t* L_2 = L_1; int32_t L_3 = *((int32_t*)L_2); *((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_add(L_3, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6; L_6 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_5, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8; L_8 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_7, NULL); NullCheck(L_4); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_4, L_6, L_8, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_9 = __this->___curNode_11; String_t* L_10; L_10 = XmlTextReaderImpl_ParseEntityName_m3E547DE2000F6AB699FF1052E470BDBEFAB11D11(__this, NULL); NullCheck(L_9); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_9, 5, L_10, NULL); return; } } // System.Xml.XmlTextReaderImpl/EntityType System.Xml.XmlTextReaderImpl::HandleEntityReference(System.Boolean,System.Xml.XmlTextReaderImpl/EntityExpandType,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_HandleEntityReference_mCDF9E4056C8508F64B66ABE7063D04D48DA64CA5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___isInAttributeValue0, int32_t ___expandType1, int32_t* ___charRefEndPos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; String_t* V_4 = NULL; int32_t V_5 = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charsUsed_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_1, 1))) == ((uint32_t)L_3)))) { goto IL_002d; } } { int32_t L_4; L_4 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_4) { goto IL_002d; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); } IL_002d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = L_5->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8 = L_7->___charPos_1; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_8, 1)); uint16_t L_10 = (uint16_t)(L_6)->GetAt(static_cast(L_9)); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)35))))) { goto IL_005e; } } { int32_t* L_11 = ___charRefEndPos2; int32_t L_12 = ___expandType1; int32_t L_13; L_13 = XmlTextReaderImpl_ParseNumericCharRef_m9DAF75CCAB6BE2E4F1E955BC1B252006EFFB832F(__this, (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0), (StringBuilder_t*)NULL, (&V_0), NULL); *((int32_t*)L_11) = (int32_t)L_13; int32_t L_14 = V_0; return L_14; } IL_005e: { int32_t* L_15 = ___charRefEndPos2; int32_t L_16 = ___expandType1; int32_t L_17; L_17 = XmlTextReaderImpl_ParseNamedCharRef_mF403C076AA9507980567EB27D8769ADE153F8421(__this, (bool)((((int32_t)((((int32_t)L_16) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0), (StringBuilder_t*)NULL, NULL); *((int32_t*)L_15) = (int32_t)L_17; int32_t* L_18 = ___charRefEndPos2; int32_t L_19 = *((int32_t*)L_18); if ((((int32_t)L_19) < ((int32_t)0))) { goto IL_0075; } } { return (int32_t)(2); } IL_0075: { int32_t L_20 = ___expandType1; if ((((int32_t)L_20) == ((int32_t)2))) { goto IL_008d; } } { int32_t L_21 = __this->___entityHandling_28; if ((((int32_t)L_21) == ((int32_t)1))) { goto IL_008f; } } { bool L_22 = ___isInAttributeValue0; if (!L_22) { goto IL_008d; } } { bool L_23 = __this->___validatingReaderCompatFlag_59; if (L_23) { goto IL_008f; } } IL_008d: { return (int32_t)(6); } IL_008f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); int32_t* L_25 = (&L_24->___charPos_1); int32_t* L_26 = L_25; int32_t L_27 = *((int32_t*)L_26); *((int32_t*)L_26) = (int32_t)((int32_t)il2cpp_codegen_add(L_27, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_28 = (&__this->___ps_6); int32_t L_29; L_29 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_28, NULL); V_2 = L_29; } try {// begin try (depth: 1) int32_t L_30; L_30 = XmlTextReaderImpl_ParseName_m91011791BCE5AF6659C6F7710B79FC64A08D2C39(__this, NULL); V_1 = L_30; goto IL_00d4; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00b4; } throw e; } CATCH_00b4: {// begin catch(System.Xml.XmlException) ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); int32_t L_32; L_32 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_31, NULL); int32_t L_33 = V_2; XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54)), L_32, L_33, NULL); V_5 = 4; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_016c; }// end catch (depth: 1) IL_00d4: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_34 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = L_34->___chars_0; int32_t L_36 = V_1; NullCheck(L_35); int32_t L_37 = L_36; uint16_t L_38 = (uint16_t)(L_35)->GetAt(static_cast(L_37)); if ((((int32_t)L_38) == ((int32_t)((int32_t)59)))) { goto IL_00f1; } } { int32_t L_39 = V_1; XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF(__this, L_39, _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3, NULL); } IL_00f1: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_40 = (&__this->___ps_6); int32_t L_41; L_41 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_40, NULL); V_3 = L_41; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_42 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_43 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_44 = L_43->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_45 = (&__this->___ps_6); int32_t L_46 = L_45->___charPos_1; int32_t L_47 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_48 = (&__this->___ps_6); int32_t L_49 = L_48->___charPos_1; NullCheck(L_42); String_t* L_50; L_50 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_42, L_44, L_46, ((int32_t)il2cpp_codegen_subtract(L_47, L_49))); V_4 = L_50; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_51 = (&__this->___ps_6); int32_t L_52 = V_1; L_51->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_52, 1)); int32_t* L_53 = ___charRefEndPos2; *((int32_t*)L_53) = (int32_t)(-1); String_t* L_54 = V_4; bool L_55 = ___isInAttributeValue0; int32_t L_56 = V_3; int32_t L_57; L_57 = XmlTextReaderImpl_HandleGeneralEntityReference_m7341FED921A6B308D70876B0F4C8A46FBB56E446(__this, L_54, L_55, (bool)0, L_56, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_58 = (&__this->___ps_6); String_t* L_59 = L_58->___baseUriStr_13; __this->___reportedBaseUri_43 = L_59; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_59); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_60 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_61 = L_60->___encoding_3; __this->___reportedEncoding_44 = L_61; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_61); return L_57; } IL_016c: { int32_t L_62 = V_5; return L_62; } } // System.Xml.XmlTextReaderImpl/EntityType System.Xml.XmlTextReaderImpl::HandleGeneralEntityReference(System.String,System.Boolean,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_HandleGeneralEntityReference_m7341FED921A6B308D70876B0F4C8A46FBB56E446 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, bool ___isInAttributeValue1, bool ___pushFakeEntityIfNullResolver2, int32_t ___entityStartLinePos3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var); 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*)&_stringLiteral17372CA6EE06884491DF8D3AEFE02DC203DF0717); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB04A560846A93D4D813C44EFBD0968D2875C5049); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC872A8527B3262EA83113D74202CF9CBCE3B0772); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { V_0 = (RuntimeObject*)NULL; RuntimeObject* L_0 = __this->___dtdInfo_45; if (L_0) { goto IL_002e; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_1 = __this->___fragmentParserContext_47; if (!L_1) { goto IL_002e; } } { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_2 = __this->___fragmentParserContext_47; NullCheck(L_2); bool L_3; L_3 = XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B(L_2, NULL); if (!L_3) { goto IL_002e; } } { int32_t L_4 = __this->___dtdProcessing_27; if ((!(((uint32_t)L_4) == ((uint32_t)2)))) { goto IL_002e; } } { XmlTextReaderImpl_ParseDtdFromParserContext_mCDAFBB67C6485B9F431088A095F8DEC3A3224148(__this, NULL); } IL_002e: { RuntimeObject* L_5 = __this->___dtdInfo_45; if (!L_5) { goto IL_0046; } } { RuntimeObject* L_6 = __this->___dtdInfo_45; String_t* L_7 = ___name0; NullCheck(L_6); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(5 /* System.Xml.IDtdEntityInfo System.Xml.IDtdInfo::LookupEntity(System.String) */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_6, L_7); RuntimeObject* L_9 = L_8; V_0 = L_9; if (L_9) { goto IL_0081; } } IL_0046: { bool L_10 = __this->___disableUndeclaredEntityCheck_74; if (!L_10) { goto IL_0068; } } { String_t* L_11 = ___name0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_12 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_12); XmlQualifiedName__ctor_m2DD62019A76524587CC7204E1AB903CDAADA6545(L_12, L_11, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_13 = (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7*)il2cpp_codegen_object_new(SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var); NullCheck(L_13); SchemaEntity__ctor_m7444C0D862E0CC6A87EE2B39B4D058F657AA299C(L_13, L_12, (bool)0, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_14 = L_13; String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_14); SchemaEntity_set_Text_m62FCB261049A0B400D7C27470AFC73EA227861AF(L_14, L_15, NULL); V_0 = L_14; goto IL_0081; } IL_0068: { String_t* L_16 = ___name0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18; L_18 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_17, NULL); int32_t L_19 = ___entityStartLinePos3; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06, L_16, L_18, L_19, NULL); } IL_0081: { RuntimeObject* L_20 = V_0; NullCheck(L_20); bool L_21; L_21 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsUnparsedEntity() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_20); if (!L_21) { goto IL_00c4; } } { bool L_22 = __this->___disableUndeclaredEntityCheck_74; if (!L_22) { goto IL_00ab; } } { String_t* L_23 = ___name0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_24 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_24); XmlQualifiedName__ctor_m2DD62019A76524587CC7204E1AB903CDAADA6545(L_24, L_23, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_25 = (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7*)il2cpp_codegen_object_new(SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var); NullCheck(L_25); SchemaEntity__ctor_m7444C0D862E0CC6A87EE2B39B4D058F657AA299C(L_25, L_24, (bool)0, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_26 = L_25; String_t* L_27 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_26); SchemaEntity_set_Text_m62FCB261049A0B400D7C27470AFC73EA227861AF(L_26, L_27, NULL); V_0 = L_26; goto IL_00c4; } IL_00ab: { String_t* L_28 = ___name0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); int32_t L_30; L_30 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_29, NULL); int32_t L_31 = ___entityStartLinePos3; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteral17372CA6EE06884491DF8D3AEFE02DC203DF0717, L_28, L_30, L_31, NULL); } IL_00c4: { bool L_32 = __this->___standalone_63; if (!L_32) { goto IL_00f2; } } { RuntimeObject* L_33 = V_0; NullCheck(L_33); bool L_34; L_34 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsDeclaredInExternal() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_33); if (!L_34) { goto IL_00f2; } } { RuntimeObject* L_35 = V_0; NullCheck(L_35); String_t* L_36; L_36 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdEntityInfo::get_Name() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_35); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_37 = (&__this->___ps_6); int32_t L_38; L_38 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_37, NULL); int32_t L_39 = ___entityStartLinePos3; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteralC872A8527B3262EA83113D74202CF9CBCE3B0772, L_36, L_38, L_39, NULL); } IL_00f2: { RuntimeObject* L_40 = V_0; NullCheck(L_40); bool L_41; L_41 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsExternal() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_40); if (!L_41) { goto IL_0180; } } { bool L_42 = ___isInAttributeValue1; if (!L_42) { goto IL_011b; } } { String_t* L_43 = ___name0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_44 = (&__this->___ps_6); int32_t L_45; L_45 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_44, NULL); int32_t L_46 = ___entityStartLinePos3; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteralB04A560846A93D4D813C44EFBD0968D2875C5049, L_43, L_45, L_46, NULL); return (int32_t)(4); } IL_011b: { int32_t L_47 = __this->___parsingMode_65; if ((!(((uint32_t)L_47) == ((uint32_t)2)))) { goto IL_0126; } } { return (int32_t)(4); } IL_0126: { bool L_48; L_48 = XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C(__this, NULL); if (!L_48) { goto IL_0153; } } { bool L_49 = ___pushFakeEntityIfNullResolver2; if (!L_49) { goto IL_0151; } } { RuntimeObject* L_50 = V_0; bool L_51; L_51 = XmlTextReaderImpl_PushExternalEntity_m547C80F437D100BC53D09B4E965BB58CE026557D(__this, L_50, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_52 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = L_53->___entityId_18; NullCheck(L_52); L_52->___entityId_15 = L_54; return (int32_t)(5); } IL_0151: { return (int32_t)(4); } IL_0153: { RuntimeObject* L_55 = V_0; bool L_56; L_56 = XmlTextReaderImpl_PushExternalEntity_m547C80F437D100BC53D09B4E965BB58CE026557D(__this, L_55, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_57 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_58 = (&__this->___ps_6); int32_t L_59 = L_58->___entityId_18; NullCheck(L_57); L_57->___entityId_15 = L_59; bool L_60 = ___isInAttributeValue1; if (!L_60) { goto IL_017c; } } { bool L_61 = __this->___validatingReaderCompatFlag_59; if (L_61) { goto IL_017e; } } IL_017c: { return (int32_t)(3); } IL_017e: { return (int32_t)(7); } IL_0180: { int32_t L_62 = __this->___parsingMode_65; if ((!(((uint32_t)L_62) == ((uint32_t)2)))) { goto IL_018b; } } { return (int32_t)(4); } IL_018b: { RuntimeObject* L_63 = V_0; XmlTextReaderImpl_PushInternalEntity_m1D90F101FA95554B361AD62135C9C796C1809407(__this, L_63, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_64 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_65 = (&__this->___ps_6); int32_t L_66 = L_65->___entityId_18; NullCheck(L_64); L_64->___entityId_15 = L_66; bool L_67 = ___isInAttributeValue1; if (!L_67) { goto IL_01b3; } } { bool L_68 = __this->___validatingReaderCompatFlag_59; if (L_68) { goto IL_01b5; } } IL_01b3: { return (int32_t)(3); } IL_01b5: { return (int32_t)(7); } } // System.Boolean System.Xml.XmlTextReaderImpl::get_InEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_InEntity_m8EF4B1337E60E18453F2ED32EEFD58B235BDA944 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___parsingStatesStackTop_42; return (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Xml.XmlTextReaderImpl::HandleEntityEnd(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___checkEntityNesting0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE17D434C0318F5D8C5525CEDDC1852394290CA23); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___parsingStatesStackTop_42; if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0014; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72, NULL); } IL_0014: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); bool L_2 = L_1->___entityResolvedManually_20; if (!L_2) { goto IL_0075; } } { int32_t L_3 = __this->___index_12; __this->___index_12 = ((int32_t)il2cpp_codegen_subtract(L_3, 1)); bool L_4 = ___checkEntityNesting0; if (!L_4) { goto IL_005c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___entityId_18; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_7 = __this->___nodes_10; int32_t L_8 = __this->___index_12; NullCheck(L_7); int32_t L_9 = L_8; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = (L_7)->GetAt(static_cast(L_9)); NullCheck(L_10); int32_t L_11 = L_10->___entityId_15; if ((((int32_t)L_6) == ((int32_t)L_11))) { goto IL_005c; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralE17D434C0318F5D8C5525CEDDC1852394290CA23, NULL); } IL_005c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); RuntimeObject* L_13 = L_12->___entity_17; __this->___lastEntity_67 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastEntity_67), (void*)L_13); XmlTextReaderImpl_PopEntity_m3F59397F9382BD7DF60D2249186E342F4EAC99E0(__this, NULL); return (bool)1; } IL_0075: { bool L_14 = ___checkEntityNesting0; if (!L_14) { goto IL_00a2; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16 = L_15->___entityId_18; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_17 = __this->___nodes_10; int32_t L_18 = __this->___index_12; NullCheck(L_17); int32_t L_19 = L_18; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20 = (L_17)->GetAt(static_cast(L_19)); NullCheck(L_20); int32_t L_21 = L_20->___entityId_15; if ((((int32_t)L_16) == ((int32_t)L_21))) { goto IL_00a2; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralE17D434C0318F5D8C5525CEDDC1852394290CA23, NULL); } IL_00a2: { XmlTextReaderImpl_PopEntity_m3F59397F9382BD7DF60D2249186E342F4EAC99E0(__this, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = L_22->___encoding_3; __this->___reportedEncoding_44 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_23); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); String_t* L_25 = L_24->___baseUriStr_13; __this->___reportedBaseUri_43 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_25); return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::SetupEndEntityNodeInContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupEndEntityNodeInContent_m5DF2EE9E86D586C0DD11D845EEA3BCC0ACFB47BE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = L_0->___encoding_3; __this->___reportedEncoding_44 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)L_1); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); String_t* L_3 = L_2->___baseUriStr_13; __this->___reportedBaseUri_43 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedBaseUri_43), (void*)L_3); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_4 = __this->___nodes_10; int32_t L_5 = __this->___index_12; NullCheck(L_4); int32_t L_6 = L_5; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = (L_4)->GetAt(static_cast(L_6)); __this->___curNode_11 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_7); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = __this->___curNode_11; RuntimeObject* L_9 = __this->___lastEntity_67; NullCheck(L_9); String_t* L_10; L_10 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdEntityInfo::get_Name() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_9); NullCheck(L_8); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_8, ((int32_t)16), L_10, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_11 = __this->___curNode_11; NullCheck(L_11); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_12 = (&L_11->___lineInfo_10); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = L_13->___lineNo_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16; L_16 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_15, NULL); LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_12, L_14, ((int32_t)il2cpp_codegen_subtract(L_16, 1)), NULL); int32_t L_17 = __this->___index_12; if (L_17) { goto IL_008c; } } { int32_t L_18 = __this->___parsingFunction_7; if (L_18) { goto IL_008c; } } { __this->___parsingFunction_7 = 5; } IL_008c: { return; } } // System.Void System.Xml.XmlTextReaderImpl::SetupEndEntityNodeInAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupEndEntityNodeInAttribute_m4ED5A78E4DAC8712A7C8A67774B353100E62DDEF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_0 = __this->___nodes_10; int32_t L_1 = __this->___index_12; int32_t L_2 = __this->___attrCount_14; NullCheck(L_0); int32_t L_3 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_1, L_2)), 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = (L_0)->GetAt(static_cast(L_3)); __this->___curNode_11 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_4); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = __this->___curNode_11; NullCheck(L_5); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_6 = (&L_5->___lineInfo_10); int32_t* L_7 = (&L_6->___linePos_1); int32_t* L_8 = L_7; int32_t L_9 = *((int32_t*)L_8); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = __this->___curNode_11; NullCheck(L_10); String_t* L_11 = L_10->___localName_2; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); *((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add(L_9, L_12)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = __this->___curNode_11; NullCheck(L_13); L_13->___type_1 = ((int32_t)16); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParsePI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParsePI_m6E8400067F34CBC2348BEFF511D4A08C2D0028D9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0; L_0 = XmlTextReaderImpl_ParsePI_m3F73DDC051BD4C3422093EFA6EFB21FBF48A1A08(__this, (StringBuilder_t*)NULL, NULL); return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParsePI(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParsePI_m3F73DDC051BD4C3422093EFA6EFB21FBF48A1A08 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___piInDtdStringBuilder0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral180A67848B5A57936F7A288C7C73E3F33BFFCDF4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E4C0425B0E62AF487F3C7EDEFADC20B938C9A03); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; Il2CppChar V_2 = 0x0; int32_t V_3 = 0; int32_t V_4 = 0; StringBuilder_t* V_5 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B5_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_0 = NULL; String_t* G_B6_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B6_1 = NULL; { int32_t L_0 = __this->___parsingMode_65; if (L_0) { goto IL_0029; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3; L_3 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_2, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5; L_5 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_4, NULL); NullCheck(L_1); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_1, L_3, L_5, NULL); } IL_0029: { int32_t L_6; L_6 = XmlTextReaderImpl_ParseName_m91011791BCE5AF6659C6F7710B79FC64A08D2C39(__this, NULL); V_0 = L_6; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = L_8->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_10 = (&__this->___ps_6); int32_t L_11 = L_10->___charPos_1; int32_t L_12 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = L_13->___charPos_1; NullCheck(L_7); String_t* L_15; L_15 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_7, L_9, L_11, ((int32_t)il2cpp_codegen_subtract(L_12, L_14))); V_1 = L_15; String_t* L_16 = V_1; int32_t L_17; L_17 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_16, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, 5, NULL); if (L_17) { goto IL_008d; } } { String_t* L_18 = V_1; NullCheck(L_18); bool L_19; L_19 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_18, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL); G_B4_0 = __this; if (L_19) { G_B5_0 = __this; goto IL_0082; } } { G_B6_0 = _stringLiteral180A67848B5A57936F7A288C7C73E3F33BFFCDF4; G_B6_1 = G_B4_0; goto IL_0087; } IL_0082: { G_B6_0 = _stringLiteral1E4C0425B0E62AF487F3C7EDEFADC20B938C9A03; G_B6_1 = G_B5_0; } IL_0087: { String_t* L_20 = V_1; NullCheck(G_B6_1); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(G_B6_1, G_B6_0, L_20, NULL); } IL_008d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_21 = (&__this->___ps_6); int32_t L_22 = V_0; L_21->___charPos_1 = L_22; StringBuilder_t* L_23 = ___piInDtdStringBuilder0; if (L_23) { goto IL_00bb; } } { bool L_24 = __this->___ignorePIs_29; if (L_24) { goto IL_00c3; } } { int32_t L_25 = __this->___parsingMode_65; if (L_25) { goto IL_00c3; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_26 = __this->___curNode_11; String_t* L_27 = V_1; NullCheck(L_26); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_26, 7, L_27, NULL); goto IL_00c3; } IL_00bb: { StringBuilder_t* L_28 = ___piInDtdStringBuilder0; String_t* L_29 = V_1; NullCheck(L_28); StringBuilder_t* L_30; L_30 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_28, L_29, NULL); } IL_00c3: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = L_31->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_33 = (&__this->___ps_6); int32_t L_34 = L_33->___charPos_1; NullCheck(L_32); int32_t L_35 = L_34; uint16_t L_36 = (uint16_t)(L_32)->GetAt(static_cast(L_35)); V_2 = L_36; StringBuilder_t* L_37 = ___piInDtdStringBuilder0; int32_t L_38; L_38 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, L_37, NULL); if (L_38) { goto IL_0158; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_39 = (&__this->___ps_6); int32_t L_40 = L_39->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_41 = (&__this->___ps_6); int32_t L_42 = L_41->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_40, L_42))) >= ((int32_t)2))) { goto IL_0105; } } { int32_t L_43; L_43 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); } IL_0105: { Il2CppChar L_44 = V_2; if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)63))))) { goto IL_0127; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_45 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = L_45->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t L_48 = L_47->___charPos_1; NullCheck(L_46); int32_t L_49 = ((int32_t)il2cpp_codegen_add(L_48, 1)); uint16_t L_50 = (uint16_t)(L_46)->GetAt(static_cast(L_49)); if ((((int32_t)L_50) == ((int32_t)((int32_t)62)))) { goto IL_0158; } } IL_0127: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_51 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_52 = L_51->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = L_53->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t L_56 = L_55->___charPos_1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_57; L_57 = XmlException_BuildCharExceptionArgs_mC868154C32A2950D756F3E42B40D79DC4B7BBA33(L_52, L_54, L_56, NULL); XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274(__this, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_57, NULL); } IL_0158: { bool L_58; L_58 = XmlTextReaderImpl_ParsePIValue_mBFEE75456754EE92FB4FECAF6995FA346A725CE1(__this, (&V_3), (&V_4), NULL); if (!L_58) { goto IL_01b8; } } { StringBuilder_t* L_59 = ___piInDtdStringBuilder0; if (L_59) { goto IL_019c; } } { bool L_60 = __this->___ignorePIs_29; if (!L_60) { goto IL_0171; } } { return (bool)0; } IL_0171: { int32_t L_61 = __this->___parsingMode_65; if (L_61) { goto IL_0247; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_62 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_63 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = L_63->___chars_0; int32_t L_65 = V_3; int32_t L_66 = V_4; int32_t L_67 = V_3; NullCheck(L_62); NodeData_SetValue_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5(L_62, L_64, L_65, ((int32_t)il2cpp_codegen_subtract(L_66, L_67)), NULL); goto IL_0247; } IL_019c: { StringBuilder_t* L_68 = ___piInDtdStringBuilder0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_69 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_70 = L_69->___chars_0; int32_t L_71 = V_3; int32_t L_72 = V_4; int32_t L_73 = V_3; NullCheck(L_68); StringBuilder_t* L_74; L_74 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_68, L_70, L_71, ((int32_t)il2cpp_codegen_subtract(L_72, L_73)), NULL); goto IL_0247; } IL_01b8: { StringBuilder_t* L_75 = ___piInDtdStringBuilder0; if (L_75) { goto IL_01e3; } } { bool L_76 = __this->___ignorePIs_29; if (L_76) { goto IL_01cb; } } { int32_t L_77 = __this->___parsingMode_65; if (!L_77) { goto IL_01d9; } } IL_01cb: { bool L_78; L_78 = XmlTextReaderImpl_ParsePIValue_mBFEE75456754EE92FB4FECAF6995FA346A725CE1(__this, (&V_3), (&V_4), NULL); if (!L_78) { goto IL_01cb; } } { return (bool)0; } IL_01d9: { StringBuilder_t* L_79 = __this->___stringBuilder_61; V_5 = L_79; goto IL_01e6; } IL_01e3: { StringBuilder_t* L_80 = ___piInDtdStringBuilder0; V_5 = L_80; } IL_01e6: { StringBuilder_t* L_81 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_82 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_83 = L_82->___chars_0; int32_t L_84 = V_3; int32_t L_85 = V_4; int32_t L_86 = V_3; NullCheck(L_81); StringBuilder_t* L_87; L_87 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_81, L_83, L_84, ((int32_t)il2cpp_codegen_subtract(L_85, L_86)), NULL); bool L_88; L_88 = XmlTextReaderImpl_ParsePIValue_mBFEE75456754EE92FB4FECAF6995FA346A725CE1(__this, (&V_3), (&V_4), NULL); if (!L_88) { goto IL_01e6; } } { StringBuilder_t* L_89 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_90 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_91 = L_90->___chars_0; int32_t L_92 = V_3; int32_t L_93 = V_4; int32_t L_94 = V_3; NullCheck(L_89); StringBuilder_t* L_95; L_95 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_89, L_91, L_92, ((int32_t)il2cpp_codegen_subtract(L_93, L_94)), NULL); StringBuilder_t* L_96 = ___piInDtdStringBuilder0; if (L_96) { goto IL_0247; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_97 = __this->___curNode_11; StringBuilder_t* L_98 = __this->___stringBuilder_61; NullCheck(L_98); String_t* L_99; L_99 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_98); NullCheck(L_97); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_97, L_99, NULL); StringBuilder_t* L_100 = __this->___stringBuilder_61; NullCheck(L_100); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_100, 0, NULL); } IL_0247: { return (bool)1; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParsePIValue(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParsePIValue_mBFEE75456754EE92FB4FECAF6995FA346A725CE1 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___outStartPos0, int32_t* ___outEndPos1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; Il2CppChar V_5 = 0x0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, L_3))) >= ((int32_t)2))) { goto IL_003d; } } { int32_t L_4; L_4 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_4) { goto IL_003d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___charsUsed_2; XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397(__this, L_6, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18, NULL); } IL_003d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8 = L_7->___charPos_1; V_0 = L_8; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = L_9->___chars_0; V_1 = L_10; V_2 = 0; V_3 = (-1); goto IL_005f; } IL_005b: { int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1)); } IL_005f: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_12 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = L_12->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = V_1; int32_t L_15 = V_0; NullCheck(L_14); int32_t L_16 = L_15; uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast(L_16)); uint16_t L_18 = L_17; V_4 = L_18; NullCheck(L_13); uint16_t L_19 = L_18; uint8_t L_20 = (L_13)->GetAt(static_cast(L_19)); if (!((int32_t)((int32_t)L_20&((int32_t)64)))) { goto IL_007c; } } { Il2CppChar L_21 = V_4; if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)63))))) { goto IL_005b; } } IL_007c: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = V_1; int32_t L_23 = V_0; NullCheck(L_22); int32_t L_24 = L_23; uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast(L_24)); V_5 = L_25; Il2CppChar L_26 = V_5; if ((!(((uint32_t)L_26) <= ((uint32_t)((int32_t)38))))) { goto IL_00b3; } } { Il2CppChar L_27 = V_5; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_27, ((int32_t)9)))) { case 0: { goto IL_01e7; } case 1: { goto IL_012f; } case 2: { goto IL_01f0; } case 3: { goto IL_01f0; } case 4: { goto IL_013f; } } } { Il2CppChar L_28 = V_5; if ((((int32_t)L_28) == ((int32_t)((int32_t)38)))) { goto IL_01e7; } } { goto IL_01f0; } IL_00b3: { Il2CppChar L_29 = V_5; if ((((int32_t)L_29) == ((int32_t)((int32_t)60)))) { goto IL_01e7; } } { Il2CppChar L_30 = V_5; if ((((int32_t)L_30) == ((int32_t)((int32_t)63)))) { goto IL_00d0; } } { Il2CppChar L_31 = V_5; if ((((int32_t)L_31) == ((int32_t)((int32_t)93)))) { goto IL_01e7; } } { goto IL_01f0; } IL_00d0: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = V_1; int32_t L_33 = V_0; NullCheck(L_32); int32_t L_34 = ((int32_t)il2cpp_codegen_add(L_33, 1)); uint16_t L_35 = (uint16_t)(L_32)->GetAt(static_cast(L_34)); if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)62))))) { goto IL_0113; } } { int32_t L_36 = V_2; if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_00f3; } } { int32_t L_37 = V_3; int32_t L_38 = V_2; int32_t L_39 = V_3; int32_t L_40 = V_0; int32_t L_41 = V_3; int32_t L_42 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_37, L_38)), L_39, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_40, L_41)), L_42)), NULL); int32_t* L_43 = ___outEndPos1; int32_t L_44 = V_0; int32_t L_45 = V_2; *((int32_t*)L_43) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_44, L_45)); goto IL_00f6; } IL_00f3: { int32_t* L_46 = ___outEndPos1; int32_t L_47 = V_0; *((int32_t*)L_46) = (int32_t)L_47; } IL_00f6: { int32_t* L_48 = ___outStartPos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_49 = (&__this->___ps_6); int32_t L_50 = L_49->___charPos_1; *((int32_t*)L_48) = (int32_t)L_50; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_51 = (&__this->___ps_6); int32_t L_52 = V_0; L_51->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_52, 2)); return (bool)1; } IL_0113: { int32_t L_53 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_54 = (&__this->___ps_6); int32_t L_55 = L_54->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_53, 1))) == ((int32_t)L_55))) { goto IL_0247; } } { int32_t L_56 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_56, 1)); goto IL_005f; } IL_012f: { int32_t L_57 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_57, 1)); int32_t L_58 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_58, NULL); goto IL_005f; } IL_013f: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = V_1; int32_t L_60 = V_0; NullCheck(L_59); int32_t L_61 = ((int32_t)il2cpp_codegen_add(L_60, 1)); uint16_t L_62 = (uint16_t)(L_59)->GetAt(static_cast(L_61)); if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)10))))) { goto IL_01a5; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_63 = (&__this->___ps_6); bool L_64 = L_63->___eolNormalized_19; if (L_64) { goto IL_019f; } } { int32_t L_65 = __this->___parsingMode_65; if (L_65) { goto IL_019f; } } { int32_t L_66 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_67 = (&__this->___ps_6); int32_t L_68 = L_67->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_66, L_68))) <= ((int32_t)0))) { goto IL_018f; } } { int32_t L_69 = V_2; if (L_69) { goto IL_0176; } } { V_2 = 1; int32_t L_70 = V_0; V_3 = L_70; goto IL_019f; } IL_0176: { int32_t L_71 = V_3; int32_t L_72 = V_2; int32_t L_73 = V_3; int32_t L_74 = V_0; int32_t L_75 = V_3; int32_t L_76 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_71, L_72)), L_73, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_74, L_75)), L_76)), NULL); int32_t L_77 = V_0; int32_t L_78 = V_2; V_3 = ((int32_t)il2cpp_codegen_subtract(L_77, L_78)); int32_t L_79 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_79, 1)); goto IL_019f; } IL_018f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_80 = (&__this->___ps_6); int32_t* L_81 = (&L_80->___charPos_1); int32_t* L_82 = L_81; int32_t L_83 = *((int32_t*)L_82); *((int32_t*)L_82) = (int32_t)((int32_t)il2cpp_codegen_add(L_83, 1)); } IL_019f: { int32_t L_84 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_84, 2)); goto IL_01db; } IL_01a5: { int32_t L_85 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_86 = (&__this->___ps_6); int32_t L_87 = L_86->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_85, 1))) < ((int32_t)L_87))) { goto IL_01c5; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_88 = (&__this->___ps_6); bool L_89 = L_88->___isEof_15; if (!L_89) { goto IL_0247; } } IL_01c5: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_90 = (&__this->___ps_6); bool L_91 = L_90->___eolNormalized_19; if (L_91) { goto IL_01d7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_92 = V_1; int32_t L_93 = V_0; NullCheck(L_92); (L_92)->SetAt(static_cast(L_93), (Il2CppChar)((int32_t)10)); } IL_01d7: { int32_t L_94 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_94, 1)); } IL_01db: { int32_t L_95 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_95, NULL); goto IL_005f; } IL_01e7: { int32_t L_96 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_96, 1)); goto IL_005f; } IL_01f0: { int32_t L_97 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_98 = (&__this->___ps_6); int32_t L_99 = L_98->___charsUsed_2; if ((((int32_t)L_97) == ((int32_t)L_99))) { goto IL_0247; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_100 = V_1; int32_t L_101 = V_0; NullCheck(L_100); int32_t L_102 = L_101; uint16_t L_103 = (uint16_t)(L_100)->GetAt(static_cast(L_102)); bool L_104; L_104 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_103, NULL); if (!L_104) { goto IL_022f; } } { int32_t L_105 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_106 = (&__this->___ps_6); int32_t L_107 = L_106->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_105, 1))) == ((int32_t)L_107))) { goto IL_0247; } } { int32_t L_108 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_108, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_109 = V_1; int32_t L_110 = V_0; NullCheck(L_109); int32_t L_111 = L_110; uint16_t L_112 = (uint16_t)(L_109)->GetAt(static_cast(L_111)); bool L_113; L_113 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_112, NULL); if (!L_113) { goto IL_022f; } } { int32_t L_114 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_114, 1)); goto IL_005f; } IL_022f: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_115 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_116 = (&__this->___ps_6); int32_t L_117 = L_116->___charsUsed_2; int32_t L_118 = V_0; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_115, L_117, L_118, NULL); goto IL_005f; } IL_0247: { int32_t L_119 = V_2; if ((((int32_t)L_119) <= ((int32_t)0))) { goto IL_0261; } } { int32_t L_120 = V_3; int32_t L_121 = V_2; int32_t L_122 = V_3; int32_t L_123 = V_0; int32_t L_124 = V_3; int32_t L_125 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_120, L_121)), L_122, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_123, L_124)), L_125)), NULL); int32_t* L_126 = ___outEndPos1; int32_t L_127 = V_0; int32_t L_128 = V_2; *((int32_t*)L_126) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_127, L_128)); goto IL_0264; } IL_0261: { int32_t* L_129 = ___outEndPos1; int32_t L_130 = V_0; *((int32_t*)L_129) = (int32_t)L_130; } IL_0264: { int32_t* L_131 = ___outStartPos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_132 = (&__this->___ps_6); int32_t L_133 = L_132->___charPos_1; *((int32_t*)L_131) = (int32_t)L_133; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_134 = (&__this->___ps_6); int32_t L_135 = V_0; L_134->___charPos_1 = L_135; return (bool)0; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseComment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseComment_m8C13A96E0EA7CE2D682C6E9560504BD5093A27A4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->___ignoreComments_30; if (!L_0) { goto IL_0026; } } { int32_t L_1 = __this->___parsingMode_65; V_0 = L_1; __this->___parsingMode_65 = 1; XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74(__this, 8, NULL); int32_t L_2 = V_0; __this->___parsingMode_65 = L_2; return (bool)0; } IL_0026: { XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74(__this, 8, NULL); return (bool)1; } } // System.Void System.Xml.XmlTextReaderImpl::ParseCData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseCData_m9F7DDEB84A22C55F46A07F40FDFB0D4EACB97C7D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74(__this, 4, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ParseCDataOrComment(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseCDataOrComment_mA51B73D7BB029128B58310955B42080CD9294B74 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___type0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = __this->___parsingMode_65; if (L_0) { goto IL_00bc; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3; L_3 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_2, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5; L_5 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_4, NULL); NullCheck(L_1); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_1, L_3, L_5, NULL); int32_t L_6 = ___type0; bool L_7; L_7 = XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3(__this, L_6, (&V_0), (&V_1), NULL); if (!L_7) { goto IL_0055; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = __this->___curNode_11; int32_t L_9 = ___type0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_10 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = L_10->___chars_0; int32_t L_12 = V_0; int32_t L_13 = V_1; int32_t L_14 = V_0; NullCheck(L_8); NodeData_SetValueNode_m50F48B9511DD8F6BDB6D49CFB0B3BD799D6AD0F1(L_8, L_9, L_11, L_12, ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), NULL); return; } IL_0055: { StringBuilder_t* L_15 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = L_16->___chars_0; int32_t L_18 = V_0; int32_t L_19 = V_1; int32_t L_20 = V_0; NullCheck(L_15); StringBuilder_t* L_21; L_21 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_15, L_17, L_18, ((int32_t)il2cpp_codegen_subtract(L_19, L_20)), NULL); int32_t L_22 = ___type0; bool L_23; L_23 = XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3(__this, L_22, (&V_0), (&V_1), NULL); if (!L_23) { goto IL_0055; } } { StringBuilder_t* L_24 = __this->___stringBuilder_61; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = L_25->___chars_0; int32_t L_27 = V_0; int32_t L_28 = V_1; int32_t L_29 = V_0; NullCheck(L_24); StringBuilder_t* L_30; L_30 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_24, L_26, L_27, ((int32_t)il2cpp_codegen_subtract(L_28, L_29)), NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_31 = __this->___curNode_11; int32_t L_32 = ___type0; StringBuilder_t* L_33 = __this->___stringBuilder_61; NullCheck(L_33); String_t* L_34; L_34 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33); NullCheck(L_31); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_31, L_32, L_34, NULL); StringBuilder_t* L_35 = __this->___stringBuilder_61; NullCheck(L_35); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_35, 0, NULL); return; } IL_00bc: { int32_t L_36 = ___type0; bool L_37; L_37 = XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3(__this, L_36, (&V_0), (&V_1), NULL); if (!L_37) { goto IL_00bc; } } { return; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseCDataOrComment(System.Xml.XmlNodeType,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___type0, int32_t* ___outStartPos1, int32_t* ___outEndPos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; Il2CppChar V_5 = 0x0; Il2CppChar V_6 = 0x0; String_t* G_B4_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_1 = NULL; String_t* G_B3_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_1 = NULL; String_t* G_B5_0 = NULL; String_t* G_B5_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B5_2 = NULL; int32_t G_B9_0 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, L_3))) >= ((int32_t)3))) { goto IL_003d; } } { int32_t L_4; L_4 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_4) { goto IL_003d; } } { int32_t L_5 = ___type0; G_B3_0 = _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC; G_B3_1 = __this; if ((((int32_t)L_5) == ((int32_t)8))) { G_B4_0 = _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC; G_B4_1 = __this; goto IL_0033; } } { G_B5_0 = _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C; G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0038; } IL_0033: { G_B5_0 = _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0038: { NullCheck(G_B5_2); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(G_B5_2, G_B5_1, G_B5_0, NULL); } IL_003d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); int32_t L_7 = L_6->___charPos_1; V_0 = L_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = L_8->___chars_0; V_1 = L_9; V_2 = 0; V_3 = (-1); int32_t L_10 = ___type0; if ((((int32_t)L_10) == ((int32_t)8))) { goto IL_0061; } } { G_B9_0 = ((int32_t)93); goto IL_0063; } IL_0061: { G_B9_0 = ((int32_t)45); } IL_0063: { V_4 = G_B9_0; goto IL_006b; } IL_0067: { int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1)); } IL_006b: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_12 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = L_12->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = V_1; int32_t L_15 = V_0; NullCheck(L_14); int32_t L_16 = L_15; uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast(L_16)); uint16_t L_18 = L_17; V_5 = L_18; NullCheck(L_13); uint16_t L_19 = L_18; uint8_t L_20 = (L_13)->GetAt(static_cast(L_19)); if (!((int32_t)((int32_t)L_20&((int32_t)64)))) { goto IL_0088; } } { Il2CppChar L_21 = V_5; Il2CppChar L_22 = V_4; if ((!(((uint32_t)L_21) == ((uint32_t)L_22)))) { goto IL_0067; } } IL_0088: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = V_1; int32_t L_24 = V_0; NullCheck(L_23); int32_t L_25 = L_24; uint16_t L_26 = (uint16_t)(L_23)->GetAt(static_cast(L_25)); Il2CppChar L_27 = V_4; if ((!(((uint32_t)L_26) == ((uint32_t)L_27)))) { goto IL_011f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = V_1; int32_t L_29 = V_0; NullCheck(L_28); int32_t L_30 = ((int32_t)il2cpp_codegen_add(L_29, 1)); uint16_t L_31 = (uint16_t)(L_28)->GetAt(static_cast(L_30)); Il2CppChar L_32 = V_4; if ((!(((uint32_t)L_31) == ((uint32_t)L_32)))) { goto IL_0103; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = V_1; int32_t L_34 = V_0; NullCheck(L_33); int32_t L_35 = ((int32_t)il2cpp_codegen_add(L_34, 2)); uint16_t L_36 = (uint16_t)(L_33)->GetAt(static_cast(L_35)); if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)62))))) { goto IL_00de; } } { int32_t L_37 = V_2; if ((((int32_t)L_37) <= ((int32_t)0))) { goto IL_00be; } } { int32_t L_38 = V_3; int32_t L_39 = V_2; int32_t L_40 = V_3; int32_t L_41 = V_0; int32_t L_42 = V_3; int32_t L_43 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_38, L_39)), L_40, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_41, L_42)), L_43)), NULL); int32_t* L_44 = ___outEndPos2; int32_t L_45 = V_0; int32_t L_46 = V_2; *((int32_t*)L_44) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_45, L_46)); goto IL_00c1; } IL_00be: { int32_t* L_47 = ___outEndPos2; int32_t L_48 = V_0; *((int32_t*)L_47) = (int32_t)L_48; } IL_00c1: { int32_t* L_49 = ___outStartPos1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); int32_t L_51 = L_50->___charPos_1; *((int32_t*)L_49) = (int32_t)L_51; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_52 = (&__this->___ps_6); int32_t L_53 = V_0; L_52->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_53, 3)); return (bool)1; } IL_00de: { int32_t L_54 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t L_56 = L_55->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_54, 2))) == ((int32_t)L_56))) { goto IL_027d; } } { int32_t L_57 = ___type0; if ((!(((uint32_t)L_57) == ((uint32_t)8)))) { goto IL_0116; } } { int32_t L_58 = V_0; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_58, _stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9, NULL); goto IL_0116; } IL_0103: { int32_t L_59 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_60 = (&__this->___ps_6); int32_t L_61 = L_60->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_59, 1))) == ((int32_t)L_61))) { goto IL_027d; } } IL_0116: { int32_t L_62 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_62, 1)); goto IL_006b; } IL_011f: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = V_1; int32_t L_64 = V_0; NullCheck(L_63); int32_t L_65 = L_64; uint16_t L_66 = (uint16_t)(L_63)->GetAt(static_cast(L_65)); V_6 = L_66; Il2CppChar L_67 = V_6; if ((!(((uint32_t)L_67) <= ((uint32_t)((int32_t)38))))) { goto IL_0156; } } { Il2CppChar L_68 = V_6; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_68, ((int32_t)9)))) { case 0: { goto IL_0222; } case 1: { goto IL_016d; } case 2: { goto IL_022b; } case 3: { goto IL_022b; } case 4: { goto IL_017d; } } } { Il2CppChar L_69 = V_6; if ((((int32_t)L_69) == ((int32_t)((int32_t)38)))) { goto IL_0222; } } { goto IL_022b; } IL_0156: { Il2CppChar L_70 = V_6; if ((((int32_t)L_70) == ((int32_t)((int32_t)60)))) { goto IL_0222; } } { Il2CppChar L_71 = V_6; if ((((int32_t)L_71) == ((int32_t)((int32_t)93)))) { goto IL_0222; } } { goto IL_022b; } IL_016d: { int32_t L_72 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_72, 1)); int32_t L_73 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_73, NULL); goto IL_006b; } IL_017d: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_74 = V_1; int32_t L_75 = V_0; NullCheck(L_74); int32_t L_76 = ((int32_t)il2cpp_codegen_add(L_75, 1)); uint16_t L_77 = (uint16_t)(L_74)->GetAt(static_cast(L_76)); if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)10))))) { goto IL_01e3; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_78 = (&__this->___ps_6); bool L_79 = L_78->___eolNormalized_19; if (L_79) { goto IL_01dd; } } { int32_t L_80 = __this->___parsingMode_65; if (L_80) { goto IL_01dd; } } { int32_t L_81 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_82 = (&__this->___ps_6); int32_t L_83 = L_82->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_81, L_83))) <= ((int32_t)0))) { goto IL_01cd; } } { int32_t L_84 = V_2; if (L_84) { goto IL_01b4; } } { V_2 = 1; int32_t L_85 = V_0; V_3 = L_85; goto IL_01dd; } IL_01b4: { int32_t L_86 = V_3; int32_t L_87 = V_2; int32_t L_88 = V_3; int32_t L_89 = V_0; int32_t L_90 = V_3; int32_t L_91 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_86, L_87)), L_88, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_89, L_90)), L_91)), NULL); int32_t L_92 = V_0; int32_t L_93 = V_2; V_3 = ((int32_t)il2cpp_codegen_subtract(L_92, L_93)); int32_t L_94 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_94, 1)); goto IL_01dd; } IL_01cd: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_95 = (&__this->___ps_6); int32_t* L_96 = (&L_95->___charPos_1); int32_t* L_97 = L_96; int32_t L_98 = *((int32_t*)L_97); *((int32_t*)L_97) = (int32_t)((int32_t)il2cpp_codegen_add(L_98, 1)); } IL_01dd: { int32_t L_99 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_99, 2)); goto IL_0216; } IL_01e3: { int32_t L_100 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_101 = (&__this->___ps_6); int32_t L_102 = L_101->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_100, 1))) < ((int32_t)L_102))) { goto IL_0200; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_103 = (&__this->___ps_6); bool L_104 = L_103->___isEof_15; if (!L_104) { goto IL_027d; } } IL_0200: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_105 = (&__this->___ps_6); bool L_106 = L_105->___eolNormalized_19; if (L_106) { goto IL_0212; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_107 = V_1; int32_t L_108 = V_0; NullCheck(L_107); (L_107)->SetAt(static_cast(L_108), (Il2CppChar)((int32_t)10)); } IL_0212: { int32_t L_109 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_109, 1)); } IL_0216: { int32_t L_110 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_110, NULL); goto IL_006b; } IL_0222: { int32_t L_111 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_111, 1)); goto IL_006b; } IL_022b: { int32_t L_112 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_113 = (&__this->___ps_6); int32_t L_114 = L_113->___charsUsed_2; if ((((int32_t)L_112) == ((int32_t)L_114))) { goto IL_027d; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_115 = V_1; int32_t L_116 = V_0; NullCheck(L_115); int32_t L_117 = L_116; uint16_t L_118 = (uint16_t)(L_115)->GetAt(static_cast(L_117)); bool L_119; L_119 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_118, NULL); if (!L_119) { goto IL_026a; } } { int32_t L_120 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_121 = (&__this->___ps_6); int32_t L_122 = L_121->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_120, 1))) == ((int32_t)L_122))) { goto IL_027d; } } { int32_t L_123 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_123, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_124 = V_1; int32_t L_125 = V_0; NullCheck(L_124); int32_t L_126 = L_125; uint16_t L_127 = (uint16_t)(L_124)->GetAt(static_cast(L_126)); bool L_128; L_128 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_127, NULL); if (!L_128) { goto IL_026a; } } { int32_t L_129 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_129, 1)); goto IL_006b; } IL_026a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_130 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_131 = (&__this->___ps_6); int32_t L_132 = L_131->___charsUsed_2; int32_t L_133 = V_0; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_130, L_132, L_133, NULL); } IL_027d: { int32_t L_134 = V_2; if ((((int32_t)L_134) <= ((int32_t)0))) { goto IL_0297; } } { int32_t L_135 = V_3; int32_t L_136 = V_2; int32_t L_137 = V_3; int32_t L_138 = V_0; int32_t L_139 = V_3; int32_t L_140 = V_2; XmlTextReaderImpl_ShiftBuffer_m9BECA455EAEF35A421F684DFFFC45D542A92A5A0(__this, ((int32_t)il2cpp_codegen_add(L_135, L_136)), L_137, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_138, L_139)), L_140)), NULL); int32_t* L_141 = ___outEndPos2; int32_t L_142 = V_0; int32_t L_143 = V_2; *((int32_t*)L_141) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_142, L_143)); goto IL_029a; } IL_0297: { int32_t* L_144 = ___outEndPos2; int32_t L_145 = V_0; *((int32_t*)L_144) = (int32_t)L_145; } IL_029a: { int32_t* L_146 = ___outStartPos1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_147 = (&__this->___ps_6); int32_t L_148 = L_147->___charPos_1; *((int32_t*)L_146) = (int32_t)L_148; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_149 = (&__this->___ps_6); int32_t L_150 = V_0; L_149->___charPos_1 = L_150; return (bool)0; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseDoctypeDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseDoctypeDecl_mBDE8F7BD4F76D04F8D6C6E042C3CE212E4E76C07 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral192210AFEA7A44FE2FFAB4A93D05261DB2757891); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral982749A67A420D262D8B02D1D5E75C097587CD3A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3C584A3FE105AEB412E76816EDB194C2C149E6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF12E59379196681BB583947C4CA20072F667A2DD); s_Il2CppMethodInitialized = true; } XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B2_0 = NULL; String_t* G_B4_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B11_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B10_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B12_0 = NULL; String_t* G_B13_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B13_1 = NULL; { int32_t L_0 = __this->___dtdProcessing_27; if (L_0) { goto IL_003c; } } { bool L_1 = __this->___v1Compat_37; G_B2_0 = __this; if (L_1) { G_B3_0 = __this; goto IL_0018; } } { G_B4_0 = _stringLiteral982749A67A420D262D8B02D1D5E75C097587CD3A; G_B4_1 = G_B2_0; goto IL_001d; } IL_0018: { G_B4_0 = _stringLiteralF12E59379196681BB583947C4CA20072F667A2DD; G_B4_1 = G_B3_0; } IL_001d: { NullCheck(G_B4_1); XmlTextReaderImpl_ThrowWithoutLineInfo_m84E949C18CF06CDC034FCC00FC85E7C17304530E(G_B4_1, G_B4_0, NULL); goto IL_003c; } IL_0024: { int32_t L_2; L_2 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_2) { goto IL_003c; } } { XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(__this, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C, NULL); } IL_003c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4 = L_3->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_6))) < ((int32_t)8))) { goto IL_0024; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = L_7->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = L_9->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_11; L_11 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_8, L_10, 7, _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C, NULL); if (L_11) { goto IL_009b; } } { bool L_12 = __this->___rootElementParsed_62; G_B10_0 = __this; if (L_12) { G_B11_0 = __this; goto IL_008a; } } { RuntimeObject* L_13 = __this->___dtdInfo_45; G_B11_0 = G_B10_0; if (!L_13) { G_B12_0 = G_B10_0; goto IL_0091; } } IL_008a: { G_B13_0 = _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4; G_B13_1 = G_B11_0; goto IL_0096; } IL_0091: { G_B13_0 = _stringLiteral2923AF57406AD3628AA00F2F47378348C0E89B4C; G_B13_1 = G_B12_0; } IL_0096: { NullCheck(G_B13_1); XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(G_B13_1, G_B13_0, NULL); } IL_009b: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_14 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = L_15->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18 = L_17->___charPos_1; NullCheck(L_16); int32_t L_19 = ((int32_t)il2cpp_codegen_add(L_18, 7)); uint16_t L_20 = (uint16_t)(L_16)->GetAt(static_cast(L_19)); bool L_21; L_21 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_14, L_20, NULL); if (L_21) { goto IL_00d4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); int32_t L_23 = L_22->___charPos_1; XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B(__this, ((int32_t)il2cpp_codegen_add(L_23, 7)), NULL); } IL_00d4: { RuntimeObject* L_24 = __this->___dtdInfo_45; if (!L_24) { goto IL_00f4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); int32_t L_26 = L_25->___charPos_1; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, ((int32_t)il2cpp_codegen_subtract(L_26, 2)), _stringLiteralA3C584A3FE105AEB412E76816EDB194C2C149E6E, NULL); } IL_00f4: { bool L_27 = __this->___rootElementParsed_62; if (!L_27) { goto IL_0114; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_28 = (&__this->___ps_6); int32_t L_29 = L_28->___charPos_1; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, ((int32_t)il2cpp_codegen_subtract(L_29, 2)), _stringLiteral192210AFEA7A44FE2FFAB4A93D05261DB2757891, NULL); } IL_0114: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_30 = (&__this->___ps_6); int32_t* L_31 = (&L_30->___charPos_1); int32_t* L_32 = L_31; int32_t L_33 = *((int32_t*)L_32); *((int32_t*)L_32) = (int32_t)((int32_t)il2cpp_codegen_add(L_33, 8)); int32_t L_34; L_34 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); int32_t L_35 = __this->___dtdProcessing_27; if ((!(((uint32_t)L_35) == ((uint32_t)2)))) { goto IL_0172; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_36 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_37 = (&__this->___ps_6); int32_t L_38; L_38 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_37, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_39 = (&__this->___ps_6); int32_t L_40; L_40 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_39, NULL); NullCheck(L_36); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_36, L_38, L_40, NULL); XmlTextReaderImpl_ParseDtd_m77D579350487EB066043A62BD0DDB07C7EDC3671(__this, NULL); int32_t L_41 = __this->___parsingFunction_7; __this->___nextParsingFunction_8 = L_41; __this->___parsingFunction_7 = ((int32_t)9); return (bool)1; } IL_0172: { XmlTextReaderImpl_SkipDtd_m555E2C31136B86B1446C265590839C748B74583B(__this, NULL); return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::ParseDtd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseDtd_m77D579350487EB066043A62BD0DDB07C7EDC3671 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0; L_0 = DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B(NULL); V_0 = L_0; RuntimeObject* L_1 = V_0; DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_2 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); NullCheck(L_2); DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_2, __this, NULL); NullCheck(L_1); RuntimeObject* L_3; L_3 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, bool >::Invoke(0 /* System.Xml.IDtdInfo System.Xml.IDtdParser::ParseInternalDtd(System.Xml.IDtdParserAdapter,System.Boolean) */, IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var, L_1, L_2, (bool)1); __this->___dtdInfo_45 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___dtdInfo_45), (void*)L_3); bool L_4 = __this->___validatingReaderCompatFlag_59; if (L_4) { goto IL_0029; } } { bool L_5 = __this->___v1Compat_37; if (L_5) { goto IL_004a; } } IL_0029: { RuntimeObject* L_6 = __this->___dtdInfo_45; NullCheck(L_6); bool L_7; L_7 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.IDtdInfo::get_HasDefaultAttributes() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_6); if (L_7) { goto IL_0043; } } { RuntimeObject* L_8 = __this->___dtdInfo_45; NullCheck(L_8); bool L_9; L_9 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.Xml.IDtdInfo::get_HasNonCDataAttributes() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_8); if (!L_9) { goto IL_004a; } } IL_0043: { __this->___addDefaultAttributesAndNormalize_60 = (bool)1; } IL_004a: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = __this->___curNode_11; RuntimeObject* L_11 = __this->___dtdInfo_45; NullCheck(L_11); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_12; L_12 = InterfaceFuncInvoker0< XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* >::Invoke(0 /* System.Xml.XmlQualifiedName System.Xml.IDtdInfo::get_Name() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_11); NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12); String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_10); NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA(L_10, ((int32_t)10), L_13, L_14, (String_t*)NULL, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = __this->___curNode_11; RuntimeObject* L_16 = __this->___dtdInfo_45; NullCheck(L_16); String_t* L_17; L_17 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdInfo::get_InternalDtdSubset() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_16); NullCheck(L_15); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_15, L_17, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::SkipDtd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipDtd_m555E2C31136B86B1446C265590839C748B74583B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41EF1659C5E772235CFEA4B5A94D5DF6799C5608); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0; L_0 = XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56(__this, (&V_0), NULL); V_1 = L_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); int32_t L_2 = V_1; L_1->___charPos_1 = L_2; int32_t L_3; L_3 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); int32_t L_7 = L_6->___charPos_1; NullCheck(L_5); int32_t L_8 = L_7; uint16_t L_9 = (uint16_t)(L_5)->GetAt(static_cast(L_8)); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)80))))) { goto IL_00f5; } } { goto IL_0050; } IL_003d: { int32_t L_10; L_10 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_10) { goto IL_0050; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); } IL_0050: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); int32_t L_12 = L_11->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); int32_t L_14 = L_13->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_12, L_14))) < ((int32_t)6))) { goto IL_003d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = L_15->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18 = L_17->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_19; L_19 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_16, L_18, 6, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91, NULL); if (L_19) { goto IL_0098; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91, NULL); } IL_0098: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); int32_t* L_21 = (&L_20->___charPos_1); int32_t* L_22 = L_21; int32_t L_23 = *((int32_t*)L_22); *((int32_t*)L_22) = (int32_t)((int32_t)il2cpp_codegen_add(L_23, 6)); int32_t L_24; L_24 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); if (L_24) { goto IL_00c2; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); int32_t L_26 = L_25->___charPos_1; XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B(__this, L_26, NULL); } IL_00c2: { XmlTextReaderImpl_SkipPublicOrSystemIdLiteral_m8F049682515C5D01A4FB7F3122E3EF0C866A37F5(__this, NULL); int32_t L_27; L_27 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); if (L_27) { goto IL_00e2; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_28 = (&__this->___ps_6); int32_t L_29 = L_28->___charPos_1; XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B(__this, L_29, NULL); } IL_00e2: { XmlTextReaderImpl_SkipPublicOrSystemIdLiteral_m8F049682515C5D01A4FB7F3122E3EF0C866A37F5(__this, NULL); int32_t L_30; L_30 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); goto IL_01eb; } IL_00f5: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = L_31->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_33 = (&__this->___ps_6); int32_t L_34 = L_33->___charPos_1; NullCheck(L_32); int32_t L_35 = L_34; uint16_t L_36 = (uint16_t)(L_32)->GetAt(static_cast(L_35)); if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)83))))) { goto IL_01aa; } } { goto IL_0128; } IL_0115: { int32_t L_37; L_37 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_37) { goto IL_0128; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); } IL_0128: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_38 = (&__this->___ps_6); int32_t L_39 = L_38->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_40 = (&__this->___ps_6); int32_t L_41 = L_40->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_39, L_41))) < ((int32_t)6))) { goto IL_0115; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_42 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_43 = L_42->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_44 = (&__this->___ps_6); int32_t L_45 = L_44->___charPos_1; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_46; L_46 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_43, L_45, 6, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560, NULL); if (L_46) { goto IL_0170; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560, NULL); } IL_0170: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t* L_48 = (&L_47->___charPos_1); int32_t* L_49 = L_48; int32_t L_50 = *((int32_t*)L_49); *((int32_t*)L_49) = (int32_t)((int32_t)il2cpp_codegen_add(L_50, 6)); int32_t L_51; L_51 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); if (L_51) { goto IL_019a; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_52 = (&__this->___ps_6); int32_t L_53 = L_52->___charPos_1; XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B(__this, L_53, NULL); } IL_019a: { XmlTextReaderImpl_SkipPublicOrSystemIdLiteral_m8F049682515C5D01A4FB7F3122E3EF0C866A37F5(__this, NULL); int32_t L_54; L_54 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); goto IL_01eb; } IL_01aa: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_56 = L_55->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_57 = (&__this->___ps_6); int32_t L_58 = L_57->___charPos_1; NullCheck(L_56); int32_t L_59 = L_58; uint16_t L_60 = (uint16_t)(L_56)->GetAt(static_cast(L_59)); if ((((int32_t)L_60) == ((int32_t)((int32_t)91)))) { goto IL_01eb; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_61 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_62 = L_61->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_63 = (&__this->___ps_6); int32_t L_64 = L_63->___charPos_1; NullCheck(L_62); int32_t L_65 = L_64; uint16_t L_66 = (uint16_t)(L_62)->GetAt(static_cast(L_65)); if ((((int32_t)L_66) == ((int32_t)((int32_t)62)))) { goto IL_01eb; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_01eb: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_67 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68 = L_67->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_69 = (&__this->___ps_6); int32_t L_70 = L_69->___charPos_1; NullCheck(L_68); int32_t L_71 = L_70; uint16_t L_72 = (uint16_t)(L_68)->GetAt(static_cast(L_71)); if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)91))))) { goto IL_024f; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_73 = (&__this->___ps_6); int32_t* L_74 = (&L_73->___charPos_1); int32_t* L_75 = L_74; int32_t L_76 = *((int32_t*)L_75); *((int32_t*)L_75) = (int32_t)((int32_t)il2cpp_codegen_add(L_76, 1)); XmlTextReaderImpl_SkipUntil_mDFEE1D762C7074F7FADF2504FC52D59F1B4D716E(__this, ((int32_t)93), (bool)1, NULL); int32_t L_77; L_77 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_78 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = L_78->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_80 = (&__this->___ps_6); int32_t L_81 = L_80->___charPos_1; NullCheck(L_79); int32_t L_82 = L_81; uint16_t L_83 = (uint16_t)(L_79)->GetAt(static_cast(L_82)); if ((((int32_t)L_83) == ((int32_t)((int32_t)62)))) { goto IL_0287; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); goto IL_0287; } IL_024f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_84 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_85 = L_84->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_86 = (&__this->___ps_6); int32_t L_87 = L_86->___charPos_1; NullCheck(L_85); int32_t L_88 = L_87; uint16_t L_89 = (uint16_t)(L_85)->GetAt(static_cast(L_88)); if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)62))))) { goto IL_027c; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_90 = __this->___curNode_11; String_t* L_91 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_90); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_90, L_91, NULL); goto IL_0287; } IL_027c: { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral41EF1659C5E772235CFEA4B5A94D5DF6799C5608, NULL); } IL_0287: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_92 = (&__this->___ps_6); int32_t* L_93 = (&L_92->___charPos_1); int32_t* L_94 = L_93; int32_t L_95 = *((int32_t*)L_94); *((int32_t*)L_94) = (int32_t)((int32_t)il2cpp_codegen_add(L_95, 1)); return; } } // System.Void System.Xml.XmlTextReaderImpl::SkipPublicOrSystemIdLiteral() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipPublicOrSystemIdLiteral_m8F049682515C5D01A4FB7F3122E3EF0C866A37F5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; NullCheck(L_1); int32_t L_4 = L_3; uint16_t L_5 = (uint16_t)(L_1)->GetAt(static_cast(L_4)); V_0 = L_5; Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)34)))) { goto IL_0032; } } { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)39)))) { goto IL_0032; } } { XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905(__this, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_0032: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); int32_t* L_9 = (&L_8->___charPos_1); int32_t* L_10 = L_9; int32_t L_11 = *((int32_t*)L_10); *((int32_t*)L_10) = (int32_t)((int32_t)il2cpp_codegen_add(L_11, 1)); Il2CppChar L_12 = V_0; XmlTextReaderImpl_SkipUntil_mDFEE1D762C7074F7FADF2504FC52D59F1B4D716E(__this, L_12, (bool)0, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::SkipUntil(System.Char,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SkipUntil_mDFEE1D762C7074F7FADF2504FC52D59F1B4D716E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Il2CppChar ___stopChar0, bool ___recognizeLiterals1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; bool V_2 = false; Il2CppChar V_3 = 0x0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_4 = NULL; int32_t V_5 = 0; Il2CppChar V_6 = 0x0; { V_0 = (bool)0; V_1 = (bool)0; V_2 = (bool)0; V_3 = ((int32_t)34); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; V_4 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; V_5 = L_3; goto IL_002b; } IL_0025: { int32_t L_4 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_4, 1)); } IL_002b: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_5 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = L_5->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_4; int32_t L_8 = V_5; NullCheck(L_7); int32_t L_9 = L_8; uint16_t L_10 = (uint16_t)(L_7)->GetAt(static_cast(L_9)); uint16_t L_11 = L_10; V_6 = L_11; NullCheck(L_6); uint16_t L_12 = L_11; uint8_t L_13 = (L_6)->GetAt(static_cast(L_12)); if (!((int32_t)((int32_t)L_13&((int32_t)128)))) { goto IL_005b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = V_4; int32_t L_15 = V_5; NullCheck(L_14); int32_t L_16 = L_15; uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast(L_16)); Il2CppChar L_18 = ___stopChar0; if ((((int32_t)L_17) == ((int32_t)L_18))) { goto IL_005b; } } { Il2CppChar L_19 = V_6; if ((((int32_t)L_19) == ((int32_t)((int32_t)45)))) { goto IL_005b; } } { Il2CppChar L_20 = V_6; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)63))))) { goto IL_0025; } } IL_005b: { Il2CppChar L_21 = V_6; Il2CppChar L_22 = ___stopChar0; if ((!(((uint32_t)L_21) == ((uint32_t)L_22)))) { goto IL_0073; } } { bool L_23 = V_0; if (L_23) { goto IL_0073; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); int32_t L_25 = V_5; L_24->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_25, 1)); return; } IL_0073: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); int32_t L_27 = V_5; L_26->___charPos_1 = L_27; Il2CppChar L_28 = V_6; if ((!(((uint32_t)L_28) <= ((uint32_t)((int32_t)38))))) { goto IL_00bb; } } { Il2CppChar L_29 = V_6; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_29, ((int32_t)9)))) { case 0: { goto IL_02a1; } case 1: { goto IL_0100; } case 2: { goto IL_02d1; } case 3: { goto IL_02d1; } case 4: { goto IL_0113; } } } { Il2CppChar L_30 = V_6; if ((((int32_t)L_30) == ((int32_t)((int32_t)34)))) { goto IL_02ac; } } { Il2CppChar L_31 = V_6; if ((((int32_t)L_31) == ((int32_t)((int32_t)38)))) { goto IL_02a1; } } { goto IL_02d1; } IL_00bb: { Il2CppChar L_32 = V_6; if ((!(((uint32_t)L_32) <= ((uint32_t)((int32_t)45))))) { goto IL_00d8; } } { Il2CppChar L_33 = V_6; if ((((int32_t)L_33) == ((int32_t)((int32_t)39)))) { goto IL_02ac; } } { Il2CppChar L_34 = V_6; if ((((int32_t)L_34) == ((int32_t)((int32_t)45)))) { goto IL_0208; } } { goto IL_02d1; } IL_00d8: { Il2CppChar L_35 = V_6; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_35, ((int32_t)60)))) { case 0: { goto IL_015a; } case 1: { goto IL_02d1; } case 2: { goto IL_02a1; } case 3: { goto IL_025a; } } } { Il2CppChar L_36 = V_6; if ((((int32_t)L_36) == ((int32_t)((int32_t)93)))) { goto IL_02a1; } } { goto IL_02d1; } IL_0100: { int32_t L_37 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_37, 1)); int32_t L_38 = V_5; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_38, NULL); goto IL_002b; } IL_0113: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = V_4; int32_t L_40 = V_5; NullCheck(L_39); int32_t L_41 = ((int32_t)il2cpp_codegen_add(L_40, 1)); uint16_t L_42 = (uint16_t)(L_39)->GetAt(static_cast(L_41)); if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)10))))) { goto IL_0126; } } { int32_t L_43 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_43, 2)); goto IL_014d; } IL_0126: { int32_t L_44 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_45 = (&__this->___ps_6); int32_t L_46 = L_45->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_44, 1))) < ((int32_t)L_46))) { goto IL_0147; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); bool L_48 = L_47->___isEof_15; if (!L_48) { goto IL_032f; } } IL_0147: { int32_t L_49 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_49, 1)); } IL_014d: { int32_t L_50 = V_5; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_50, NULL); goto IL_002b; } IL_015a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_51 = V_4; int32_t L_52 = V_5; NullCheck(L_51); int32_t L_53 = ((int32_t)il2cpp_codegen_add(L_52, 1)); uint16_t L_54 = (uint16_t)(L_51)->GetAt(static_cast(L_53)); if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)63))))) { goto IL_0184; } } { bool L_55 = ___recognizeLiterals1; if (!L_55) { goto IL_01fd; } } { bool L_56 = V_0; if (L_56) { goto IL_01fd; } } { bool L_57 = V_1; if (L_57) { goto IL_01fd; } } { V_2 = (bool)1; int32_t L_58 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_58, 2)); goto IL_002b; } IL_0184: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = V_4; int32_t L_60 = V_5; NullCheck(L_59); int32_t L_61 = ((int32_t)il2cpp_codegen_add(L_60, 1)); uint16_t L_62 = (uint16_t)(L_59)->GetAt(static_cast(L_61)); if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)33))))) { goto IL_01dc; } } { int32_t L_63 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_64 = (&__this->___ps_6); int32_t L_65 = L_64->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_63, 3))) < ((int32_t)L_65))) { goto IL_01b0; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_66 = (&__this->___ps_6); bool L_67 = L_66->___isEof_15; if (!L_67) { goto IL_032f; } } IL_01b0: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68 = V_4; int32_t L_69 = V_5; NullCheck(L_68); int32_t L_70 = ((int32_t)il2cpp_codegen_add(L_69, 2)); uint16_t L_71 = (uint16_t)(L_68)->GetAt(static_cast(L_70)); if ((!(((uint32_t)L_71) == ((uint32_t)((int32_t)45))))) { goto IL_01fd; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_72 = V_4; int32_t L_73 = V_5; NullCheck(L_72); int32_t L_74 = ((int32_t)il2cpp_codegen_add(L_73, 3)); uint16_t L_75 = (uint16_t)(L_72)->GetAt(static_cast(L_74)); if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)45))))) { goto IL_01fd; } } { bool L_76 = ___recognizeLiterals1; if (!L_76) { goto IL_01fd; } } { bool L_77 = V_0; if (L_77) { goto IL_01fd; } } { bool L_78 = V_2; if (L_78) { goto IL_01fd; } } { V_1 = (bool)1; int32_t L_79 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_79, 4)); goto IL_002b; } IL_01dc: { int32_t L_80 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_81 = (&__this->___ps_6); int32_t L_82 = L_81->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_80, 1))) < ((int32_t)L_82))) { goto IL_01fd; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_83 = (&__this->___ps_6); bool L_84 = L_83->___isEof_15; if (!L_84) { goto IL_032f; } } IL_01fd: { int32_t L_85 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_85, 1)); goto IL_002b; } IL_0208: { bool L_86 = V_1; if (!L_86) { goto IL_024f; } } { int32_t L_87 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_88 = (&__this->___ps_6); int32_t L_89 = L_88->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_87, 2))) < ((int32_t)L_89))) { goto IL_022c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_90 = (&__this->___ps_6); bool L_91 = L_90->___isEof_15; if (!L_91) { goto IL_032f; } } IL_022c: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_92 = V_4; int32_t L_93 = V_5; NullCheck(L_92); int32_t L_94 = ((int32_t)il2cpp_codegen_add(L_93, 1)); uint16_t L_95 = (uint16_t)(L_92)->GetAt(static_cast(L_94)); if ((!(((uint32_t)L_95) == ((uint32_t)((int32_t)45))))) { goto IL_024f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_96 = V_4; int32_t L_97 = V_5; NullCheck(L_96); int32_t L_98 = ((int32_t)il2cpp_codegen_add(L_97, 2)); uint16_t L_99 = (uint16_t)(L_96)->GetAt(static_cast(L_98)); if ((!(((uint32_t)L_99) == ((uint32_t)((int32_t)62))))) { goto IL_024f; } } { V_1 = (bool)0; int32_t L_100 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_100, 2)); goto IL_002b; } IL_024f: { int32_t L_101 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_101, 1)); goto IL_002b; } IL_025a: { bool L_102 = V_2; if (!L_102) { goto IL_0296; } } { int32_t L_103 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_104 = (&__this->___ps_6); int32_t L_105 = L_104->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_103, 1))) < ((int32_t)L_105))) { goto IL_027e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_106 = (&__this->___ps_6); bool L_107 = L_106->___isEof_15; if (!L_107) { goto IL_032f; } } IL_027e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_108 = V_4; int32_t L_109 = V_5; NullCheck(L_108); int32_t L_110 = ((int32_t)il2cpp_codegen_add(L_109, 1)); uint16_t L_111 = (uint16_t)(L_108)->GetAt(static_cast(L_110)); if ((!(((uint32_t)L_111) == ((uint32_t)((int32_t)62))))) { goto IL_0296; } } { V_2 = (bool)0; int32_t L_112 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_112, 1)); goto IL_002b; } IL_0296: { int32_t L_113 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_113, 1)); goto IL_002b; } IL_02a1: { int32_t L_114 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_114, 1)); goto IL_002b; } IL_02ac: { bool L_115 = V_0; if (!L_115) { goto IL_02b8; } } { Il2CppChar L_116 = V_3; Il2CppChar L_117 = V_6; if ((!(((uint32_t)L_116) == ((uint32_t)L_117)))) { goto IL_02c6; } } { V_0 = (bool)0; goto IL_02c6; } IL_02b8: { bool L_118 = ___recognizeLiterals1; if (!L_118) { goto IL_02c6; } } { bool L_119 = V_1; if (L_119) { goto IL_02c6; } } { bool L_120 = V_2; if (L_120) { goto IL_02c6; } } { V_0 = (bool)1; Il2CppChar L_121 = V_6; V_3 = L_121; } IL_02c6: { int32_t L_122 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_122, 1)); goto IL_002b; } IL_02d1: { int32_t L_123 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_124 = (&__this->___ps_6); int32_t L_125 = L_124->___charsUsed_2; if ((((int32_t)L_123) == ((int32_t)L_125))) { goto IL_032f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_126 = V_4; int32_t L_127 = V_5; NullCheck(L_126); int32_t L_128 = L_127; uint16_t L_129 = (uint16_t)(L_126)->GetAt(static_cast(L_128)); bool L_130; L_130 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_129, NULL); if (!L_130) { goto IL_031a; } } { int32_t L_131 = V_5; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_132 = (&__this->___ps_6); int32_t L_133 = L_132->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_131, 1))) == ((int32_t)L_133))) { goto IL_032f; } } { int32_t L_134 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_134, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_135 = V_4; int32_t L_136 = V_5; NullCheck(L_135); int32_t L_137 = L_136; uint16_t L_138 = (uint16_t)(L_135)->GetAt(static_cast(L_137)); bool L_139; L_139 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_138, NULL); if (!L_139) { goto IL_031a; } } { int32_t L_140 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_140, 1)); goto IL_002b; } IL_031a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_141 = V_4; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_142 = (&__this->___ps_6); int32_t L_143 = L_142->___charsUsed_2; int32_t L_144 = V_5; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_141, L_143, L_144, NULL); } IL_032f: { int32_t L_145; L_145 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_145) { goto IL_0384; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_146 = (&__this->___ps_6); int32_t L_147 = L_146->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_148 = (&__this->___ps_6); int32_t L_149 = L_148->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_147, L_149))) <= ((int32_t)0))) { goto IL_0379; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_150 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_151 = L_150->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_152 = (&__this->___ps_6); int32_t L_153 = L_152->___charPos_1; NullCheck(L_151); int32_t L_154 = L_153; uint16_t L_155 = (uint16_t)(L_151)->GetAt(static_cast(L_154)); if ((((int32_t)L_155) == ((int32_t)((int32_t)13)))) { goto IL_0384; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); goto IL_0384; } IL_0379: { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); } IL_0384: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_156 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_157 = L_156->___chars_0; V_4 = L_157; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_158 = (&__this->___ps_6); int32_t L_159 = L_158->___charPos_1; V_5 = L_159; goto IL_002b; } } // System.Int32 System.Xml.XmlTextReaderImpl::EatWhitespaces(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; int32_t V_5 = 0; int32_t V_6 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; V_0 = L_1; V_1 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2->___chars_0; V_2 = L_3; } IL_001a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_2; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); V_4 = L_7; Il2CppChar L_8 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)9)))) { case 0: { goto IL_00f5; } case 1: { goto IL_004b; } case 2: { goto IL_00fe; } case 3: { goto IL_00fe; } case 4: { goto IL_0058; } } } { Il2CppChar L_9 = V_4; if ((((int32_t)L_9) == ((int32_t)((int32_t)32)))) { goto IL_00f5; } } { goto IL_00fe; } IL_004b: { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1)); int32_t L_11 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_11, NULL); goto IL_001a; } IL_0058: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_2; int32_t L_13 = V_0; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add(L_13, 1)); uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast(L_14)); if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)10))))) { goto IL_00b3; } } { int32_t L_16 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18 = L_17->___charPos_1; V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_18)); StringBuilder_t* L_19 = ___sb0; if (!L_19) { goto IL_00ad; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_20 = (&__this->___ps_6); bool L_21 = L_20->___eolNormalized_19; if (L_21) { goto IL_00ad; } } { int32_t L_22 = V_5; if ((((int32_t)L_22) <= ((int32_t)0))) { goto IL_009f; } } { StringBuilder_t* L_23 = ___sb0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_25 = (&__this->___ps_6); int32_t L_26 = L_25->___charPos_1; int32_t L_27 = V_5; NullCheck(L_23); StringBuilder_t* L_28; L_28 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_23, L_24, L_26, L_27, NULL); int32_t L_29 = V_1; int32_t L_30 = V_5; V_1 = ((int32_t)il2cpp_codegen_add(L_29, L_30)); } IL_009f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_31 = (&__this->___ps_6); int32_t L_32 = V_0; L_31->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_32, 1)); } IL_00ad: { int32_t L_33 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_33, 2)); goto IL_00e9; } IL_00b3: { int32_t L_34 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_35 = (&__this->___ps_6); int32_t L_36 = L_35->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_34, 1))) < ((int32_t)L_36))) { goto IL_00d3; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_37 = (&__this->___ps_6); bool L_38 = L_37->___isEof_15; if (!L_38) { goto IL_0155; } } IL_00d3: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_39 = (&__this->___ps_6); bool L_40 = L_39->___eolNormalized_19; if (L_40) { goto IL_00e5; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = V_2; int32_t L_42 = V_0; NullCheck(L_41); (L_41)->SetAt(static_cast(L_42), (Il2CppChar)((int32_t)10)); } IL_00e5: { int32_t L_43 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_43, 1)); } IL_00e9: { int32_t L_44 = V_0; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_44, NULL); goto IL_001a; } IL_00f5: { int32_t L_45 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_45, 1)); goto IL_001a; } IL_00fe: { int32_t L_46 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_47 = (&__this->___ps_6); int32_t L_48 = L_47->___charsUsed_2; if ((((int32_t)L_46) == ((int32_t)L_48))) { goto IL_0155; } } { int32_t L_49 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); int32_t L_51 = L_50->___charPos_1; V_6 = ((int32_t)il2cpp_codegen_subtract(L_49, L_51)); int32_t L_52 = V_6; if ((((int32_t)L_52) <= ((int32_t)0))) { goto IL_0153; } } { StringBuilder_t* L_53 = ___sb0; if (!L_53) { goto IL_0142; } } { StringBuilder_t* L_54 = ___sb0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_56 = L_55->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_57 = (&__this->___ps_6); int32_t L_58 = L_57->___charPos_1; int32_t L_59 = V_6; NullCheck(L_54); StringBuilder_t* L_60; L_60 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_54, L_56, L_58, L_59, NULL); } IL_0142: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_61 = (&__this->___ps_6); int32_t L_62 = V_0; L_61->___charPos_1 = L_62; int32_t L_63 = V_1; int32_t L_64 = V_6; V_1 = ((int32_t)il2cpp_codegen_add(L_63, L_64)); } IL_0153: { int32_t L_65 = V_1; return L_65; } IL_0155: { int32_t L_66 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_67 = (&__this->___ps_6); int32_t L_68 = L_67->___charPos_1; V_3 = ((int32_t)il2cpp_codegen_subtract(L_66, L_68)); int32_t L_69 = V_3; if ((((int32_t)L_69) <= ((int32_t)0))) { goto IL_0198; } } { StringBuilder_t* L_70 = ___sb0; if (!L_70) { goto IL_0188; } } { StringBuilder_t* L_71 = ___sb0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_72 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_73 = L_72->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_74 = (&__this->___ps_6); int32_t L_75 = L_74->___charPos_1; int32_t L_76 = V_3; NullCheck(L_71); StringBuilder_t* L_77; L_77 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_71, L_73, L_75, L_76, NULL); } IL_0188: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_78 = (&__this->___ps_6); int32_t L_79 = V_0; L_78->___charPos_1 = L_79; int32_t L_80 = V_1; int32_t L_81 = V_3; V_1 = ((int32_t)il2cpp_codegen_add(L_80, L_81)); } IL_0198: { int32_t L_82; L_82 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_82) { goto IL_01e1; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_83 = (&__this->___ps_6); int32_t L_84 = L_83->___charsUsed_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_85 = (&__this->___ps_6); int32_t L_86 = L_85->___charPos_1; if (((int32_t)il2cpp_codegen_subtract(L_84, L_86))) { goto IL_01bb; } } { int32_t L_87 = V_1; return L_87; } IL_01bb: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_88 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_89 = L_88->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_90 = (&__this->___ps_6); int32_t L_91 = L_90->___charPos_1; NullCheck(L_89); int32_t L_92 = L_91; uint16_t L_93 = (uint16_t)(L_89)->GetAt(static_cast(L_92)); if ((((int32_t)L_93) == ((int32_t)((int32_t)13)))) { goto IL_01e1; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); } IL_01e1: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_94 = (&__this->___ps_6); int32_t L_95 = L_94->___charPos_1; V_0 = L_95; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_96 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_97 = L_96->___chars_0; V_2 = L_97; goto IL_001a; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseCharRefInline(System.Int32,System.Int32&,System.Xml.XmlTextReaderImpl/EntityType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseCharRefInline_m36277AF9F85A6323D8061187EAA94862923DB1D9 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___startPos0, int32_t* ___charCount1, int32_t* ___entityType2, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; int32_t L_2 = ___startPos0; NullCheck(L_1); int32_t L_3 = ((int32_t)il2cpp_codegen_add(L_2, 1)); uint16_t L_4 = (uint16_t)(L_1)->GetAt(static_cast(L_3)); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)35))))) { goto IL_001f; } } { int32_t L_5 = ___startPos0; int32_t* L_6 = ___charCount1; int32_t* L_7 = ___entityType2; int32_t L_8; L_8 = XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C(__this, L_5, (bool)1, (StringBuilder_t*)NULL, L_6, L_7, NULL); return L_8; } IL_001f: { int32_t* L_9 = ___charCount1; *((int32_t*)L_9) = (int32_t)1; int32_t* L_10 = ___entityType2; *((int32_t*)L_10) = (int32_t)2; int32_t L_11 = ___startPos0; int32_t L_12; L_12 = XmlTextReaderImpl_ParseNamedCharRefInline_m235172C65E8E87FB7134E46890A5DB080DF4BA0A(__this, L_11, (bool)1, (StringBuilder_t*)NULL, NULL); return L_12; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseNumericCharRef(System.Boolean,System.Text.StringBuilder,System.Xml.XmlTextReaderImpl/EntityType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNumericCharRef_m9DAF75CCAB6BE2E4F1E955BC1B252006EFFB832F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___expand0, StringBuilder_t* ___internalSubsetBuilder1, int32_t* ___entityType2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; IL_0000: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; bool L_2 = ___expand0; StringBuilder_t* L_3 = ___internalSubsetBuilder1; int32_t* L_4 = ___entityType2; int32_t L_5; L_5 = XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C(__this, L_1, L_2, L_3, (&V_1), L_4, NULL); int32_t L_6 = L_5; V_0 = L_6; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)-2))))) { goto IL_0031; } } { int32_t L_7; L_7 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_7) { goto IL_0000; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, NULL); goto IL_0000; } IL_0031: { bool L_8 = ___expand0; if (!L_8) { goto IL_0042; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = V_0; int32_t L_11 = V_1; L_9->___charPos_1 = ((int32_t)il2cpp_codegen_subtract(L_10, L_11)); } IL_0042: { int32_t L_12 = V_0; return L_12; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseNumericCharRefInline(System.Int32,System.Boolean,System.Text.StringBuilder,System.Int32&,System.Xml.XmlTextReaderImpl/EntityType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___startPos0, bool ___expand1, StringBuilder_t* ___internalSubsetBuilder2, int32_t* ___charCount3, int32_t* ___entityType4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DDD59971908C2866702474E28490B7C5C1356ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37A05C2D8FD93BC463950C5DDF58614B3DEDE3EA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL; String_t* V_3 = NULL; int32_t V_4 = 0; Il2CppChar V_5 = 0x0; int32_t V_6 = 0; OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* V_7 = NULL; Il2CppChar V_8 = 0x0; Il2CppChar V_9 = 0x0; Il2CppChar V_10 = 0x0; il2cpp::utils::ExceptionSupportStack __active_exceptions; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B36_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B35_0 = NULL; int32_t G_B37_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B37_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B48_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B47_0 = NULL; int32_t G_B49_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B49_1 = NULL; { V_0 = 0; V_3 = (String_t*)NULL; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; V_2 = L_1; int32_t L_2 = ___startPos0; V_1 = ((int32_t)il2cpp_codegen_add(L_2, 2)); int32_t* L_3 = ___charCount3; *((int32_t*)L_3) = (int32_t)0; V_4 = 0; } try {// begin try (depth: 1) { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_2; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)120))))) { goto IL_008f_1; } } { int32_t L_8 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1)); int32_t L_9 = V_1; V_4 = L_9; V_3 = _stringLiteral37A05C2D8FD93BC463950C5DDF58614B3DEDE3EA; } IL_002f_1: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = V_2; int32_t L_11 = V_1; NullCheck(L_10); int32_t L_12 = L_11; uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast(L_12)); V_5 = L_13; Il2CppChar L_14 = V_5; if ((((int32_t)L_14) < ((int32_t)((int32_t)48)))) { goto IL_004d_1; } } { Il2CppChar L_15 = V_5; if ((((int32_t)L_15) > ((int32_t)((int32_t)57)))) { goto IL_004d_1; } } { int32_t L_16 = V_0; if (((int64_t)L_16 * (int64_t)((int32_t)16) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_16 * (int64_t)((int32_t)16) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); Il2CppChar L_17 = V_5; if (((int64_t)((int32_t)il2cpp_codegen_multiply(L_16, ((int32_t)16))) + (int64_t)L_17 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(L_16, ((int32_t)16))) + (int64_t)L_17 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_16, ((int32_t)16))), (int32_t)L_17)) - (int64_t)((int32_t)48) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_16, ((int32_t)16))), (int32_t)L_17)) - (int64_t)((int32_t)48) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_16, ((int32_t)16))), (int32_t)L_17)), ((int32_t)48))); goto IL_0083_1; } IL_004d_1: { Il2CppChar L_18 = V_5; if ((((int32_t)L_18) < ((int32_t)((int32_t)97)))) { goto IL_0069_1; } } { Il2CppChar L_19 = V_5; if ((((int32_t)L_19) > ((int32_t)((int32_t)102)))) { goto IL_0069_1; } } { int32_t L_20 = V_0; if (((int64_t)L_20 * (int64_t)((int32_t)16) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_20 * (int64_t)((int32_t)16) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))) + (int64_t)((int32_t)10) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))) + (int64_t)((int32_t)10) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); Il2CppChar L_21 = V_5; if (((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))), ((int32_t)10))) + (int64_t)L_21 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))), ((int32_t)10))) + (int64_t)L_21 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))), ((int32_t)10))), (int32_t)L_21)) - (int64_t)((int32_t)97) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))), ((int32_t)10))), (int32_t)L_21)) - (int64_t)((int32_t)97) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)16))), ((int32_t)10))), (int32_t)L_21)), ((int32_t)97))); goto IL_0083_1; } IL_0069_1: { Il2CppChar L_22 = V_5; if ((((int32_t)L_22) < ((int32_t)((int32_t)65)))) { goto IL_0089_1; } } { Il2CppChar L_23 = V_5; if ((((int32_t)L_23) > ((int32_t)((int32_t)70)))) { goto IL_0089_1; } } { int32_t L_24 = V_0; if (((int64_t)L_24 * (int64_t)((int32_t)16) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_24 * (int64_t)((int32_t)16) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))) + (int64_t)((int32_t)10) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))) + (int64_t)((int32_t)10) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); Il2CppChar L_25 = V_5; if (((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))), ((int32_t)10))) + (int64_t)L_25 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))), ((int32_t)10))) + (int64_t)L_25 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))), ((int32_t)10))), (int32_t)L_25)) - (int64_t)((int32_t)65) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))), ((int32_t)10))), (int32_t)L_25)) - (int64_t)((int32_t)65) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)16))), ((int32_t)10))), (int32_t)L_25)), ((int32_t)65))); } IL_0083_1: { int32_t L_26 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_26, 1)); goto IL_002f_1; } IL_0089_1: { int32_t* L_27 = ___entityType4; *((int32_t*)L_27) = (int32_t)1; goto IL_00d9_1; } IL_008f_1: { int32_t L_28 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); int32_t L_30 = L_29->___charsUsed_2; if ((((int32_t)L_28) >= ((int32_t)L_30))) { goto IL_00cc_1; } } { int32_t L_31 = V_1; V_4 = L_31; V_3 = _stringLiteral0DDD59971908C2866702474E28490B7C5C1356ED; goto IL_00b8_1; } IL_00a8_1: { int32_t L_32 = V_0; if (((int64_t)L_32 * (int64_t)((int32_t)10) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_32 * (int64_t)((int32_t)10) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = V_2; int32_t L_34 = V_1; NullCheck(L_33); int32_t L_35 = L_34; uint16_t L_36 = (uint16_t)(L_33)->GetAt(static_cast(L_35)); if (((int64_t)((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)10))) + (int64_t)L_36 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)10))) + (int64_t)L_36 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)10))), (int32_t)L_36)) - (int64_t)((int32_t)48) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)10))), (int32_t)L_36)) - (int64_t)((int32_t)48) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlTextReaderImpl_ParseNumericCharRefInline_m85DA4F414B2073CF7DE99C1407F3C391FCF5129C_RuntimeMethod_var); V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)10))), (int32_t)L_36)), ((int32_t)48))); int32_t L_37 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_37, 1)); } IL_00b8_1: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = V_2; int32_t L_39 = V_1; NullCheck(L_38); int32_t L_40 = L_39; uint16_t L_41 = (uint16_t)(L_38)->GetAt(static_cast(L_40)); if ((((int32_t)L_41) < ((int32_t)((int32_t)48)))) { goto IL_00c6_1; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_42 = V_2; int32_t L_43 = V_1; NullCheck(L_42); int32_t L_44 = L_43; uint16_t L_45 = (uint16_t)(L_42)->GetAt(static_cast(L_44)); if ((((int32_t)L_45) <= ((int32_t)((int32_t)57)))) { goto IL_00a8_1; } } IL_00c6_1: { int32_t* L_46 = ___entityType4; *((int32_t*)L_46) = (int32_t)0; goto IL_00d9_1; } IL_00cc_1: { int32_t* L_47 = ___entityType4; *((int32_t*)L_47) = (int32_t)4; V_6 = ((int32_t)-2); goto IL_0266; } IL_00d9_1: { goto IL_00fd; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00db; } throw e; } CATCH_00db: {// begin catch(System.OverflowException) V_7 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_48 = (&__this->___ps_6); int32_t L_49 = V_1; L_48->___charPos_1 = L_49; int32_t* L_50 = ___entityType4; *((int32_t*)L_50) = (int32_t)4; OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_51 = V_7; XmlTextReaderImpl_Throw_m04508E40E7C3D09720FCE5018406D8E4AFE9ABAD(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC322EB89F06EA9126EEB00F7CCE625D04A1EA9F4)), (String_t*)NULL, L_51, NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00fd; }// end catch (depth: 1) IL_00fd: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_52 = V_2; int32_t L_53 = V_1; NullCheck(L_52); int32_t L_54 = L_53; uint16_t L_55 = (uint16_t)(L_52)->GetAt(static_cast(L_54)); if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)59))))) { goto IL_0109; } } { int32_t L_56 = V_4; int32_t L_57 = V_1; if ((!(((uint32_t)L_56) == ((uint32_t)L_57)))) { goto IL_0122; } } IL_0109: { int32_t L_58 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_59 = (&__this->___ps_6); int32_t L_60 = L_59->___charsUsed_2; if ((!(((uint32_t)L_58) == ((uint32_t)L_60)))) { goto IL_011a; } } { return ((int32_t)-2); } IL_011a: { int32_t L_61 = V_1; String_t* L_62 = V_3; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_61, L_62, NULL); } IL_0122: { int32_t L_63 = V_0; if ((((int32_t)L_63) > ((int32_t)((int32_t)65535)))) { goto IL_01cd; } } { int32_t L_64 = V_0; V_8 = ((int32_t)(uint16_t)L_64); XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_65 = (&__this->___xmlCharType_5); Il2CppChar L_66 = V_8; bool L_67; L_67 = XmlCharType_IsCharData_m39C87F830CD89F4F0029AA0338BB9AB5EFCC1AF5(L_65, L_66, NULL); if (L_67) { goto IL_018e; } } { bool L_68 = __this->___v1Compat_37; if (!L_68) { goto IL_0150; } } { bool L_69 = __this->___normalize_24; if (L_69) { goto IL_0160; } } IL_0150: { bool L_70 = __this->___v1Compat_37; if (L_70) { goto IL_018e; } } { bool L_71 = __this->___checkCharacters_31; if (!L_71) { goto IL_018e; } } IL_0160: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_72 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_73 = L_72->___chars_0; int32_t L_74 = ___startPos0; NullCheck(L_73); int32_t L_75 = ((int32_t)il2cpp_codegen_add(L_74, 2)); uint16_t L_76 = (uint16_t)(L_73)->GetAt(static_cast(L_75)); G_B35_0 = __this; if ((((int32_t)L_76) == ((int32_t)((int32_t)120)))) { G_B36_0 = __this; goto IL_0179; } } { int32_t L_77 = ___startPos0; G_B37_0 = ((int32_t)il2cpp_codegen_add(L_77, 2)); G_B37_1 = G_B35_0; goto IL_017c; } IL_0179: { int32_t L_78 = ___startPos0; G_B37_0 = ((int32_t)il2cpp_codegen_add(L_78, 3)); G_B37_1 = G_B36_0; } IL_017c: { Il2CppChar L_79 = V_8; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80; L_80 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(L_79, 0, NULL); NullCheck(G_B37_1); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(G_B37_1, G_B37_0, _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0, L_80, NULL); } IL_018e: { bool L_81 = ___expand1; if (!L_81) { goto IL_01c5; } } { StringBuilder_t* L_82 = ___internalSubsetBuilder2; if (!L_82) { goto IL_01c0; } } { StringBuilder_t* L_83 = ___internalSubsetBuilder2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_84 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_85 = L_84->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_86 = (&__this->___ps_6); int32_t L_87 = L_86->___charPos_1; int32_t L_88 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_89 = (&__this->___ps_6); int32_t L_90 = L_89->___charPos_1; NullCheck(L_83); StringBuilder_t* L_91; L_91 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_83, L_85, L_87, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_88, L_90)), 1)), NULL); } IL_01c0: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_92 = V_2; int32_t L_93 = V_1; Il2CppChar L_94 = V_8; NullCheck(L_92); (L_92)->SetAt(static_cast(L_93), (Il2CppChar)L_94); } IL_01c5: { int32_t* L_95 = ___charCount3; *((int32_t*)L_95) = (int32_t)1; int32_t L_96 = V_1; return ((int32_t)il2cpp_codegen_add(L_96, 1)); } IL_01cd: { int32_t L_97 = V_0; XmlCharType_SplitSurrogateChar_m8D1F247D73F0298B1E45C124BE6FA2A797ABAE56(L_97, (&V_9), (&V_10), NULL); bool L_98 = __this->___normalize_24; if (!L_98) { goto IL_0220; } } { Il2CppChar L_99 = V_10; bool L_100; L_100 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_99, NULL); if (!L_100) { goto IL_01f1; } } { Il2CppChar L_101 = V_9; bool L_102; L_102 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_101, NULL); if (L_102) { goto IL_0220; } } IL_01f1: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_103 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_104 = L_103->___chars_0; int32_t L_105 = ___startPos0; NullCheck(L_104); int32_t L_106 = ((int32_t)il2cpp_codegen_add(L_105, 2)); uint16_t L_107 = (uint16_t)(L_104)->GetAt(static_cast(L_106)); G_B47_0 = __this; if ((((int32_t)L_107) == ((int32_t)((int32_t)120)))) { G_B48_0 = __this; goto IL_020a; } } { int32_t L_108 = ___startPos0; G_B49_0 = ((int32_t)il2cpp_codegen_add(L_108, 2)); G_B49_1 = G_B47_0; goto IL_020d; } IL_020a: { int32_t L_109 = ___startPos0; G_B49_0 = ((int32_t)il2cpp_codegen_add(L_109, 3)); G_B49_1 = G_B48_0; } IL_020d: { Il2CppChar L_110 = V_10; Il2CppChar L_111 = V_9; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_112; L_112 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(L_110, L_111, NULL); NullCheck(G_B49_1); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(G_B49_1, G_B49_0, _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0, L_112, NULL); } IL_0220: { bool L_113 = ___expand1; if (!L_113) { goto IL_025e; } } { StringBuilder_t* L_114 = ___internalSubsetBuilder2; if (!L_114) { goto IL_0252; } } { StringBuilder_t* L_115 = ___internalSubsetBuilder2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_116 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_117 = L_116->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_118 = (&__this->___ps_6); int32_t L_119 = L_118->___charPos_1; int32_t L_120 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_121 = (&__this->___ps_6); int32_t L_122 = L_121->___charPos_1; NullCheck(L_115); StringBuilder_t* L_123; L_123 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_115, L_117, L_119, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_120, L_122)), 1)), NULL); } IL_0252: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_124 = V_2; int32_t L_125 = V_1; Il2CppChar L_126 = V_10; NullCheck(L_124); (L_124)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract(L_125, 1))), (Il2CppChar)L_126); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_127 = V_2; int32_t L_128 = V_1; Il2CppChar L_129 = V_9; NullCheck(L_127); (L_127)->SetAt(static_cast(L_128), (Il2CppChar)L_129); } IL_025e: { int32_t* L_130 = ___charCount3; *((int32_t*)L_130) = (int32_t)2; int32_t L_131 = V_1; return ((int32_t)il2cpp_codegen_add(L_131, 1)); } IL_0266: { int32_t L_132 = V_6; return L_132; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNamedCharRef_mF403C076AA9507980567EB27D8769ADE153F8421 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___expand0, StringBuilder_t* ___internalSubsetBuilder1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; IL_0000: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; bool L_2 = ___expand0; StringBuilder_t* L_3 = ___internalSubsetBuilder1; int32_t L_4; L_4 = XmlTextReaderImpl_ParseNamedCharRefInline_m235172C65E8E87FB7134E46890A5DB080DF4BA0A(__this, L_1, L_2, L_3, NULL); int32_t L_5 = L_4; V_0 = L_5; V_1 = L_5; int32_t L_6 = V_1; if ((((int32_t)L_6) == ((int32_t)((int32_t)-2)))) { goto IL_0021; } } { int32_t L_7 = V_1; if ((!(((uint32_t)L_7) == ((uint32_t)(-1))))) { goto IL_002b; } } { return (-1); } IL_0021: { int32_t L_8; L_8 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_8) { goto IL_0000; } } { return (-1); } IL_002b: { bool L_9 = ___expand0; if (!L_9) { goto IL_003c; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_10 = (&__this->___ps_6); int32_t L_11 = V_0; L_10->___charPos_1 = ((int32_t)il2cpp_codegen_subtract(L_11, 1)); } IL_003c: { int32_t L_12 = V_0; return L_12; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseNamedCharRefInline(System.Int32,System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseNamedCharRefInline_m235172C65E8E87FB7134E46890A5DB080DF4BA0A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___startPos0, bool ___expand1, StringBuilder_t* ___internalSubsetBuilder2, const RuntimeMethod* method) { int32_t V_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL; Il2CppChar V_2 = 0x0; Il2CppChar V_3 = 0x0; { int32_t L_0 = ___startPos0; V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1->___chars_0; V_1 = L_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_1; int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast(L_5)); V_3 = L_6; Il2CppChar L_7 = V_3; if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)103))))) { goto IL_002b; } } { Il2CppChar L_8 = V_3; if ((((int32_t)L_8) == ((int32_t)((int32_t)97)))) { goto IL_0040; } } { Il2CppChar L_9 = V_3; if ((((int32_t)L_9) == ((int32_t)((int32_t)103)))) { goto IL_0143; } } { goto IL_0170; } IL_002b: { Il2CppChar L_10 = V_3; if ((((int32_t)L_10) == ((int32_t)((int32_t)108)))) { goto IL_0116; } } { Il2CppChar L_11 = V_3; if ((((int32_t)L_11) == ((int32_t)((int32_t)113)))) { goto IL_00d4; } } { goto IL_0170; } IL_0040: { int32_t L_12 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_12, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = V_1; int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; uint16_t L_16 = (uint16_t)(L_13)->GetAt(static_cast(L_15)); if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)109))))) { goto IL_007e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_17 = (&__this->___ps_6); int32_t L_18 = L_17->___charsUsed_2; int32_t L_19 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_18, L_19))) < ((int32_t)3))) { goto IL_0172; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_1; int32_t L_21 = V_0; NullCheck(L_20); int32_t L_22 = ((int32_t)il2cpp_codegen_add(L_21, 1)); uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast(L_22)); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)112))))) { goto IL_007c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_1; int32_t L_25 = V_0; NullCheck(L_24); int32_t L_26 = ((int32_t)il2cpp_codegen_add(L_25, 2)); uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast(L_26)); if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)59))))) { goto IL_007c; } } { int32_t L_28 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_28, 3)); V_2 = ((int32_t)38); goto IL_0175; } IL_007c: { return (-1); } IL_007e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = V_1; int32_t L_30 = V_0; NullCheck(L_29); int32_t L_31 = L_30; uint16_t L_32 = (uint16_t)(L_29)->GetAt(static_cast(L_31)); if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)112))))) { goto IL_00c1; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_33 = (&__this->___ps_6); int32_t L_34 = L_33->___charsUsed_2; int32_t L_35 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_34, L_35))) < ((int32_t)4))) { goto IL_0172; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = V_1; int32_t L_37 = V_0; NullCheck(L_36); int32_t L_38 = ((int32_t)il2cpp_codegen_add(L_37, 1)); uint16_t L_39 = (uint16_t)(L_36)->GetAt(static_cast(L_38)); if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)111))))) { goto IL_00bf; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_40 = V_1; int32_t L_41 = V_0; NullCheck(L_40); int32_t L_42 = ((int32_t)il2cpp_codegen_add(L_41, 2)); uint16_t L_43 = (uint16_t)(L_40)->GetAt(static_cast(L_42)); if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)115))))) { goto IL_00bf; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_44 = V_1; int32_t L_45 = V_0; NullCheck(L_44); int32_t L_46 = ((int32_t)il2cpp_codegen_add(L_45, 3)); uint16_t L_47 = (uint16_t)(L_44)->GetAt(static_cast(L_46)); if ((!(((uint32_t)L_47) == ((uint32_t)((int32_t)59))))) { goto IL_00bf; } } { int32_t L_48 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_48, 4)); V_2 = ((int32_t)39); goto IL_0175; } IL_00bf: { return (-1); } IL_00c1: { int32_t L_49 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_50 = (&__this->___ps_6); int32_t L_51 = L_50->___charsUsed_2; if ((((int32_t)L_49) >= ((int32_t)L_51))) { goto IL_0172; } } { return (-1); } IL_00d4: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_52 = (&__this->___ps_6); int32_t L_53 = L_52->___charsUsed_2; int32_t L_54 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_53, L_54))) < ((int32_t)5))) { goto IL_0172; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_55 = V_1; int32_t L_56 = V_0; NullCheck(L_55); int32_t L_57 = ((int32_t)il2cpp_codegen_add(L_56, 1)); uint16_t L_58 = (uint16_t)(L_55)->GetAt(static_cast(L_57)); if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)117))))) { goto IL_0114; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = V_1; int32_t L_60 = V_0; NullCheck(L_59); int32_t L_61 = ((int32_t)il2cpp_codegen_add(L_60, 2)); uint16_t L_62 = (uint16_t)(L_59)->GetAt(static_cast(L_61)); if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)111))))) { goto IL_0114; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = V_1; int32_t L_64 = V_0; NullCheck(L_63); int32_t L_65 = ((int32_t)il2cpp_codegen_add(L_64, 3)); uint16_t L_66 = (uint16_t)(L_63)->GetAt(static_cast(L_65)); if ((!(((uint32_t)L_66) == ((uint32_t)((int32_t)116))))) { goto IL_0114; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_67 = V_1; int32_t L_68 = V_0; NullCheck(L_67); int32_t L_69 = ((int32_t)il2cpp_codegen_add(L_68, 4)); uint16_t L_70 = (uint16_t)(L_67)->GetAt(static_cast(L_69)); if ((!(((uint32_t)L_70) == ((uint32_t)((int32_t)59))))) { goto IL_0114; } } { int32_t L_71 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_71, 5)); V_2 = ((int32_t)34); goto IL_0175; } IL_0114: { return (-1); } IL_0116: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_72 = (&__this->___ps_6); int32_t L_73 = L_72->___charsUsed_2; int32_t L_74 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_73, L_74))) < ((int32_t)3))) { goto IL_0172; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_75 = V_1; int32_t L_76 = V_0; NullCheck(L_75); int32_t L_77 = ((int32_t)il2cpp_codegen_add(L_76, 1)); uint16_t L_78 = (uint16_t)(L_75)->GetAt(static_cast(L_77)); if ((!(((uint32_t)L_78) == ((uint32_t)((int32_t)116))))) { goto IL_0141; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = V_1; int32_t L_80 = V_0; NullCheck(L_79); int32_t L_81 = ((int32_t)il2cpp_codegen_add(L_80, 2)); uint16_t L_82 = (uint16_t)(L_79)->GetAt(static_cast(L_81)); if ((!(((uint32_t)L_82) == ((uint32_t)((int32_t)59))))) { goto IL_0141; } } { int32_t L_83 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_83, 3)); V_2 = ((int32_t)60); goto IL_0175; } IL_0141: { return (-1); } IL_0143: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_84 = (&__this->___ps_6); int32_t L_85 = L_84->___charsUsed_2; int32_t L_86 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_85, L_86))) < ((int32_t)3))) { goto IL_0172; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_87 = V_1; int32_t L_88 = V_0; NullCheck(L_87); int32_t L_89 = ((int32_t)il2cpp_codegen_add(L_88, 1)); uint16_t L_90 = (uint16_t)(L_87)->GetAt(static_cast(L_89)); if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)116))))) { goto IL_016e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_91 = V_1; int32_t L_92 = V_0; NullCheck(L_91); int32_t L_93 = ((int32_t)il2cpp_codegen_add(L_92, 2)); uint16_t L_94 = (uint16_t)(L_91)->GetAt(static_cast(L_93)); if ((!(((uint32_t)L_94) == ((uint32_t)((int32_t)59))))) { goto IL_016e; } } { int32_t L_95 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_95, 3)); V_2 = ((int32_t)62); goto IL_0175; } IL_016e: { return (-1); } IL_0170: { return (-1); } IL_0172: { return ((int32_t)-2); } IL_0175: { bool L_96 = ___expand1; if (!L_96) { goto IL_01b5; } } { StringBuilder_t* L_97 = ___internalSubsetBuilder2; if (!L_97) { goto IL_01a5; } } { StringBuilder_t* L_98 = ___internalSubsetBuilder2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_99 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_100 = L_99->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_101 = (&__this->___ps_6); int32_t L_102 = L_101->___charPos_1; int32_t L_103 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_104 = (&__this->___ps_6); int32_t L_105 = L_104->___charPos_1; NullCheck(L_98); StringBuilder_t* L_106; L_106 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_98, L_100, L_102, ((int32_t)il2cpp_codegen_subtract(L_103, L_105)), NULL); } IL_01a5: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_107 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_108 = L_107->___chars_0; int32_t L_109 = V_0; Il2CppChar L_110 = V_2; NullCheck(L_108); (L_108)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract(L_109, 1))), (Il2CppChar)L_110); } IL_01b5: { int32_t L_111 = V_0; return L_111; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseName_m91011791BCE5AF6659C6F7710B79FC64A08D2C39 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = XmlTextReaderImpl_ParseQName_m4230939DD8FF8273EE6963012476F3385B182E97(__this, (bool)0, 0, (&V_0), NULL); return L_0; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseQName(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseQName_m6CEC708ACFF03CDF688CD122A73417E4AA0C3F56 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___colonPos0, const RuntimeMethod* method) { { int32_t* L_0 = ___colonPos0; int32_t L_1; L_1 = XmlTextReaderImpl_ParseQName_m4230939DD8FF8273EE6963012476F3385B182E97(__this, (bool)1, 0, L_0, NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl::ParseQName(System.Boolean,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_ParseQName_m4230939DD8FF8273EE6963012476F3385B182E97 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___isQName0, int32_t ___startOffset1, int32_t* ___colonPos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL; int32_t* G_B24_0 = NULL; int32_t* G_B23_0 = NULL; int32_t G_B25_0 = 0; int32_t* G_B25_1 = NULL; { V_0 = (-1); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; int32_t L_2 = ___startOffset1; V_1 = ((int32_t)il2cpp_codegen_add(L_1, L_2)); } IL_0010: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3->___chars_0; V_2 = L_4; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_5 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = L_5->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_2; int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; uint16_t L_10 = (uint16_t)(L_7)->GetAt(static_cast(L_9)); NullCheck(L_6); uint16_t L_11 = L_10; uint8_t L_12 = (L_6)->GetAt(static_cast(L_11)); if (!((int32_t)((int32_t)L_12&4))) { goto IL_0035; } } { int32_t L_13 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1)); goto IL_008d; } IL_0035: { int32_t L_14 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16 = L_15->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_14, 1))) < ((int32_t)L_16))) { goto IL_0060; } } { bool L_17; L_17 = XmlTextReaderImpl_ReadDataInName_m1DAF9E903C23DBAFEB9738F7FFEB028E2340CB0E(__this, (&V_1), NULL); if (L_17) { goto IL_0010; } } { int32_t L_18 = V_1; XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397(__this, L_18, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, NULL); } IL_0060: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = V_2; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast(L_21)); if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)58))))) { goto IL_006f; } } { bool L_23 = __this->___supportNamespaces_25; if (!L_23) { goto IL_008d; } } IL_006f: { int32_t L_24 = V_1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = V_2; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_26 = (&__this->___ps_6); int32_t L_27 = L_26->___charsUsed_2; int32_t L_28 = V_1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29; L_29 = XmlException_BuildCharExceptionArgs_mC868154C32A2950D756F3E42B40D79DC4B7BBA33(L_25, L_27, L_28, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_24, _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D, L_29, NULL); } IL_008d: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_30 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_31 = L_30->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = V_2; int32_t L_33 = V_1; NullCheck(L_32); int32_t L_34 = L_33; uint16_t L_35 = (uint16_t)(L_32)->GetAt(static_cast(L_34)); NullCheck(L_31); uint16_t L_36 = L_35; uint8_t L_37 = (L_31)->GetAt(static_cast(L_36)); if (!((int32_t)((int32_t)L_37&8))) { goto IL_00a6; } } { int32_t L_38 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_38, 1)); goto IL_008d; } IL_00a6: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = V_2; int32_t L_40 = V_1; NullCheck(L_39); int32_t L_41 = L_40; uint16_t L_42 = (uint16_t)(L_39)->GetAt(static_cast(L_41)); if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)58))))) { goto IL_00fb; } } { bool L_43 = __this->___supportNamespaces_25; if (!L_43) { goto IL_00e7; } } { int32_t L_44 = V_0; if ((!(((uint32_t)L_44) == ((uint32_t)(-1))))) { goto IL_00bc; } } { bool L_45 = ___isQName0; if (L_45) { goto IL_00d0; } } IL_00bc: { int32_t L_46 = V_1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_47; L_47 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(((int32_t)58), 0, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_46, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_47, NULL); } IL_00d0: { int32_t L_48 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_49 = (&__this->___ps_6); int32_t L_50 = L_49->___charPos_1; V_0 = ((int32_t)il2cpp_codegen_subtract(L_48, L_50)); int32_t L_51 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_51, 1)); goto IL_0010; } IL_00e7: { int32_t L_52 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_53 = (&__this->___ps_6); int32_t L_54 = L_53->___charPos_1; V_0 = ((int32_t)il2cpp_codegen_subtract(L_52, L_54)); int32_t L_55 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_55, 1)); goto IL_008d; } IL_00fb: { int32_t L_56 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_57 = (&__this->___ps_6); int32_t L_58 = L_57->___charsUsed_2; if ((!(((uint32_t)L_56) == ((uint32_t)L_58)))) { goto IL_0135; } } { bool L_59; L_59 = XmlTextReaderImpl_ReadDataInName_m1DAF9E903C23DBAFEB9738F7FFEB028E2340CB0E(__this, (&V_1), NULL); if (!L_59) { goto IL_0124; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_60 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_61 = L_60->___chars_0; V_2 = L_61; goto IL_008d; } IL_0124: { int32_t L_62 = V_1; XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397(__this, L_62, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, NULL); } IL_0135: { int32_t* L_63 = ___colonPos2; int32_t L_64 = V_0; G_B23_0 = L_63; if ((((int32_t)L_64) == ((int32_t)(-1)))) { G_B24_0 = L_63; goto IL_0149; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_65 = (&__this->___ps_6); int32_t L_66 = L_65->___charPos_1; int32_t L_67 = V_0; G_B25_0 = ((int32_t)il2cpp_codegen_add(L_66, L_67)); G_B25_1 = G_B23_0; goto IL_014a; } IL_0149: { G_B25_0 = (-1); G_B25_1 = G_B24_0; } IL_014a: { *((int32_t*)G_B25_1) = (int32_t)G_B25_0; int32_t L_68 = V_1; return L_68; } } // System.Boolean System.Xml.XmlTextReaderImpl::ReadDataInName(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ReadDataInName_m1DAF9E903C23DBAFEB9738F7FFEB028E2340CB0E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t* ___pos0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t* L_0 = ___pos0; int32_t L_1 = *((int32_t*)L_0); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, L_3)); int32_t L_4; L_4 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); int32_t* L_5 = ___pos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_6 = (&__this->___ps_6); int32_t L_7 = L_6->___charPos_1; int32_t L_8 = V_0; *((int32_t*)L_5) = (int32_t)((int32_t)il2cpp_codegen_add(L_7, L_8)); return (bool)((!(((uint32_t)L_4) <= ((uint32_t)0)))? 1 : 0); } } // System.String System.Xml.XmlTextReaderImpl::ParseEntityName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ParseEntityName_m3E547DE2000F6AB699FF1052E470BDBEFAB11D11 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) int32_t L_0; L_0 = XmlTextReaderImpl_ParseName_m91011791BCE5AF6659C6F7710B79FC64A08D2C39(__this, NULL); V_0 = L_0; goto IL_0019; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0009; } throw e; } CATCH_0009: {// begin catch(System.Xml.XmlException) XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54)), NULL); V_1 = (String_t*)NULL; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0072; }// end catch (depth: 1) IL_0019: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_1 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1->___chars_0; int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast(L_4)); if ((((int32_t)L_5) == ((int32_t)((int32_t)59)))) { goto IL_0035; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54, NULL); } IL_0035: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = L_7->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10 = L_9->___charPos_1; int32_t L_11 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); int32_t L_13 = L_12->___charPos_1; NullCheck(L_6); String_t* L_14; L_14 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_6, L_8, L_10, ((int32_t)il2cpp_codegen_subtract(L_11, L_13))); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16 = V_0; L_15->___charPos_1 = ((int32_t)il2cpp_codegen_add(L_16, 1)); return L_14; } IL_0072: { String_t* L_17 = V_1; return L_17; } } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddNode(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___nodeIndex0, int32_t ___nodeDepth1, const RuntimeMethod* method) { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_0 = __this->___nodes_10; int32_t L_1 = ___nodeIndex0; NullCheck(L_0); int32_t L_2 = L_1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = (L_0)->GetAt(static_cast(L_2)); V_0 = L_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = V_0; if (!L_4) { goto IL_0015; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = V_0; int32_t L_6 = ___nodeDepth1; NullCheck(L_5); L_5->___depth_13 = L_6; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_0; return L_7; } IL_0015: { int32_t L_8 = ___nodeIndex0; int32_t L_9 = ___nodeDepth1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10; L_10 = XmlTextReaderImpl_AllocNode_m6E6D664CA0B6D2CB5D93658A07692D86C1758173(__this, L_8, L_9, NULL); return L_10; } } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AllocNode(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AllocNode_m6E6D664CA0B6D2CB5D93658A07692D86C1758173 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___nodeIndex0, int32_t ___nodeDepth1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* V_1 = NULL; { int32_t L_0 = ___nodeIndex0; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_1 = __this->___nodes_10; NullCheck(L_1); if ((((int32_t)L_0) < ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_1)->max_length)), 1))))) { goto IL_003a; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_2 = __this->___nodes_10; NullCheck(L_2); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_3 = (NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610*)SZArrayNew(NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_2)->max_length)), 2))); V_1 = L_3; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_4 = __this->___nodes_10; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_5 = V_1; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_6 = __this->___nodes_10; NullCheck(L_6); Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, ((int32_t)(((RuntimeArray*)L_6)->max_length)), NULL); NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_7 = V_1; __this->___nodes_10 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodes_10), (void*)L_7); } IL_003a: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_8 = __this->___nodes_10; int32_t L_9 = ___nodeIndex0; NullCheck(L_8); int32_t L_10 = L_9; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_11 = (L_8)->GetAt(static_cast(L_10)); V_0 = L_11; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = V_0; if (L_12) { goto IL_0055; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_13 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_13); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_13, NULL); V_0 = L_13; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_14 = __this->___nodes_10; int32_t L_15 = ___nodeIndex0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = V_0; NullCheck(L_14); ArrayElementTypeCheck (L_14, L_16); (L_14)->SetAt(static_cast(L_15), (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)L_16); } IL_0055: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_17 = V_0; int32_t L_18 = ___nodeDepth1; NullCheck(L_17); L_17->___depth_13 = L_18; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = V_0; return L_19; } } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddAttributeNoChecks(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddAttributeNoChecks_m9E1DC00CD07DE33C6E070B5613DE2F4F2549DA39 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, int32_t ___attrDepth1, const RuntimeMethod* method) { { int32_t L_0 = __this->___index_12; int32_t L_1 = __this->___attrCount_14; int32_t L_2 = ___attrDepth1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3; L_3 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), 1)), L_2, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = L_3; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = __this->___nameTable_20; String_t* L_6 = ___name0; NullCheck(L_5); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_5, L_6); NullCheck(L_4); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_4, 2, L_7, NULL); int32_t L_8 = __this->___attrCount_14; __this->___attrCount_14 = ((int32_t)il2cpp_codegen_add(L_8, 1)); return L_4; } } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddAttribute(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddAttribute_m433FDF6420611ED2F3259758656559AC3B9B7FDA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___endNamePos0, int32_t ___colonPos1, 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); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; { int32_t L_0 = ___colonPos1; if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_000c; } } { bool L_1 = __this->___supportNamespaces_25; if (L_1) { goto IL_0049; } } IL_000c: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___charPos_1; int32_t L_7 = ___endNamePos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_8 = (&__this->___ps_6); int32_t L_9 = L_8->___charPos_1; NullCheck(L_2); String_t* L_10; L_10 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, ((int32_t)il2cpp_codegen_subtract(L_7, 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; String_t* L_13 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_14; L_14 = XmlTextReaderImpl_AddAttribute_m9EA9D173DBD70BD92F1FE146724BB23DE17A8BE8(__this, L_11, L_12, L_13, NULL); return L_14; } IL_0049: { __this->___attrNeedNamespaceLookup_17 = (bool)1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_15 = (&__this->___ps_6); int32_t L_16 = L_15->___charPos_1; V_1 = L_16; int32_t L_17 = ___colonPos1; int32_t L_18 = V_1; V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, L_18)); int32_t L_19 = V_2; String_t* L_20 = __this->___lastPrefix_39; NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL); if ((!(((uint32_t)L_19) == ((uint32_t)L_21)))) { goto IL_00b4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = L_22->___chars_0; int32_t L_24 = V_1; int32_t L_25 = V_2; String_t* L_26 = __this->___lastPrefix_39; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_27; L_27 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_23, L_24, L_25, L_26, NULL); if (!L_27) { goto IL_00b4; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_28 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_29 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = L_29->___chars_0; int32_t L_31 = ___colonPos1; int32_t L_32 = ___endNamePos0; int32_t L_33 = ___colonPos1; NullCheck(L_28); String_t* L_34; L_34 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_28, L_30, ((int32_t)il2cpp_codegen_add(L_31, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_32, L_33)), 1))); String_t* L_35 = __this->___lastPrefix_39; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_36; L_36 = XmlTextReaderImpl_AddAttribute_m9EA9D173DBD70BD92F1FE146724BB23DE17A8BE8(__this, L_34, L_35, (String_t*)NULL, NULL); return L_36; } IL_00b4: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_37 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_38 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = L_38->___chars_0; int32_t L_40 = V_1; int32_t L_41 = V_2; NullCheck(L_37); String_t* L_42; L_42 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_37, L_39, L_40, L_41); V_3 = L_42; String_t* L_43 = V_3; __this->___lastPrefix_39 = L_43; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastPrefix_39), (void*)L_43); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_44 = __this->___nameTable_20; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_45 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = L_45->___chars_0; int32_t L_47 = ___colonPos1; int32_t L_48 = ___endNamePos0; int32_t L_49 = ___colonPos1; NullCheck(L_44); String_t* L_50; L_50 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_44, L_46, ((int32_t)il2cpp_codegen_add(L_47, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_48, L_49)), 1))); String_t* L_51 = V_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_52; L_52 = XmlTextReaderImpl_AddAttribute_m9EA9D173DBD70BD92F1FE146724BB23DE17A8BE8(__this, L_50, L_51, (String_t*)NULL, NULL); return L_52; } } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddAttribute_m9EA9D173DBD70BD92F1FE146724BB23DE17A8BE8 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___localName0, String_t* ___prefix1, String_t* ___nameWPrefix2, const RuntimeMethod* method) { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = __this->___index_12; int32_t L_1 = __this->___attrCount_14; int32_t L_2 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3; L_3 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_0, L_1)), 1)), ((int32_t)il2cpp_codegen_add(L_2, 1)), NULL); V_0 = L_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = V_0; String_t* L_5 = ___localName0; String_t* L_6 = ___prefix1; String_t* L_7 = ___nameWPrefix2; NullCheck(L_4); NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA(L_4, 2, L_5, L_6, L_7, NULL); String_t* L_8 = ___localName0; NullCheck(L_8); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, 0, NULL); V_1 = ((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_9&((int32_t)31)))&((int32_t)31))))); int32_t L_10 = __this->___attrHashtable_15; int32_t L_11 = V_1; if (((int32_t)(L_10&L_11))) { goto IL_0052; } } { int32_t L_12 = __this->___attrHashtable_15; int32_t L_13 = V_1; __this->___attrHashtable_15 = ((int32_t)(L_12|L_13)); goto IL_00b5; } IL_0052: { int32_t L_14 = __this->___attrDuplWalkCount_16; if ((((int32_t)L_14) >= ((int32_t)((int32_t)250)))) { goto IL_00b5; } } { int32_t L_15 = __this->___attrDuplWalkCount_16; __this->___attrDuplWalkCount_16 = ((int32_t)il2cpp_codegen_add(L_15, 1)); int32_t L_16 = __this->___index_12; V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1)); goto IL_00a3; } IL_0078: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_17 = __this->___nodes_10; int32_t L_18 = V_2; NullCheck(L_17); int32_t L_19 = L_18; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20 = (L_17)->GetAt(static_cast(L_19)); NullCheck(L_20); String_t* L_21 = L_20->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_22 = V_0; NullCheck(L_22); String_t* L_23 = L_22->___localName_2; bool L_24; L_24 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_21, L_23, NULL); if (!L_24) { goto IL_009f; } } { __this->___attrDuplWalkCount_16 = ((int32_t)250); goto IL_00b5; } IL_009f: { int32_t L_25 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_25, 1)); } IL_00a3: { int32_t L_26 = V_2; int32_t L_27 = __this->___index_12; int32_t L_28 = __this->___attrCount_14; if ((((int32_t)L_26) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_27, L_28)), 1))))) { goto IL_0078; } } IL_00b5: { int32_t L_29 = __this->___attrCount_14; __this->___attrCount_14 = ((int32_t)il2cpp_codegen_add(L_29, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_30 = V_0; return L_30; } } // System.Void System.Xml.XmlTextReaderImpl::PopElementContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopElementContext_m815F6BA5B634F8A49E91EA0246AAA21310305612 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_38; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlNamespaceManager::PopScope() */, L_0); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; NullCheck(L_2); bool L_3 = L_2->___xmlContextPushed_16; if (!L_3) { goto IL_001f; } } { XmlTextReaderImpl_PopXmlContext_mE8BF33631E261B70541D99D0F2FBFDC5DB9847E6(__this, NULL); } IL_001f: { return; } } // System.Void System.Xml.XmlTextReaderImpl::OnNewLine(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t* L_1 = (&L_0->___lineNo_11); int32_t* L_2 = L_1; int32_t L_3 = *((int32_t*)L_2); *((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_add(L_3, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); int32_t L_5 = ___pos0; L_4->___lineStartPos_12 = ((int32_t)il2cpp_codegen_subtract(L_5, 1)); return; } } // System.Void System.Xml.XmlTextReaderImpl::OnEof() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_OnEof_m8F5DFF89DE3251F9CEFA219E6A1AB8D268191B36 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_0 = __this->___nodes_10; NullCheck(L_0); int32_t L_1 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = (L_0)->GetAt(static_cast(L_1)); __this->___curNode_11 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_2); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = __this->___curNode_11; NullCheck(L_3); NodeData_Clear_m947A266026A00AB3BC65DC55B7BCE727B3D0004F(L_3, 0, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6; L_6 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_5, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8; L_8 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_7, NULL); NullCheck(L_4); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_4, L_6, L_8, NULL); __this->___parsingFunction_7 = ((int32_t)11); __this->___readState_66 = 3; __this->___reportedEncoding_44 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___reportedEncoding_44), (void*)(Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL); return; } } // System.String System.Xml.XmlTextReaderImpl::LookupNamespace(System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_LookupNamespace_mE589C9F86465B7D1B74C56E1A18F9FC0169AED1F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___node0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CC07AF4C3868561B4298BB54D24B5A984DBC70D); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_38; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = ___node0; NullCheck(L_1); String_t* L_2 = L_1->___prefix_3; NullCheck(L_0); String_t* L_3; L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_0, L_2); V_0 = L_3; String_t* L_4 = V_0; if (!L_4) { goto IL_0017; } } { String_t* L_5 = V_0; return L_5; } IL_0017: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_6 = ___node0; NullCheck(L_6); String_t* L_7 = L_6->___prefix_3; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = ___node0; NullCheck(L_8); int32_t L_9; L_9 = NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090(L_8, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_10 = ___node0; NullCheck(L_10); int32_t L_11; L_11 = NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7(L_10, NULL); XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteral2CC07AF4C3868561B4298BB54D24B5A984DBC70D, L_7, L_9, L_11, NULL); return (String_t*)NULL; } } // System.Void System.Xml.XmlTextReaderImpl::AddNamespace(System.String,System.String,System.Xml.XmlTextReaderImpl/NodeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_AddNamespace_m386AA71482212EB7FAEED6FCD330173150E87AFB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___prefix0, String_t* ___uri1, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___attr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11FD22D825C5C7EEDE7CA43876F02B7D8B4C213F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); s_Il2CppMethodInitialized = true; } ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { String_t* L_0 = ___uri1; bool L_1; L_1 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_0, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL); if (!L_1) { goto IL_0062; } } { String_t* L_2 = ___prefix0; String_t* L_3 = __this->___XmlNs_78; bool L_4; L_4 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_2, L_3, NULL); if (!L_4) { goto IL_003e; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = ___attr2; NullCheck(L_5); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_6 = (&L_5->___lineInfo2_11); int32_t L_7 = L_6->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = ___attr2; NullCheck(L_8); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_9 = (&L_8->___lineInfo2_11); int32_t L_10 = L_9->___linePos_1; XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63(__this, _stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED, L_7, L_10, NULL); goto IL_00a7; } IL_003e: { String_t* L_11 = ___prefix0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = ___attr2; NullCheck(L_12); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_13 = (&L_12->___lineInfo2_11); int32_t L_14 = L_13->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = ___attr2; NullCheck(L_15); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_16 = (&L_15->___lineInfo2_11); int32_t L_17 = L_16->___linePos_1; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09, L_11, L_14, L_17, NULL); goto IL_00a7; } IL_0062: { String_t* L_18 = ___uri1; bool L_19; L_19 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_18, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL); if (!L_19) { goto IL_00a7; } } { String_t* L_20 = ___prefix0; String_t* L_21 = __this->___Xml_77; bool L_22; L_22 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_20, L_21, NULL); if (L_22) { goto IL_00a7; } } { bool L_23 = __this->___v1Compat_37; if (L_23) { goto IL_00a7; } } { String_t* L_24 = ___prefix0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_25 = ___attr2; NullCheck(L_25); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_26 = (&L_25->___lineInfo2_11); int32_t L_27 = L_26->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_28 = ___attr2; NullCheck(L_28); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_29 = (&L_28->___lineInfo2_11); int32_t L_30 = L_29->___linePos_1; XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(__this, _stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09, L_24, L_27, L_30, NULL); } IL_00a7: { String_t* L_31 = ___uri1; NullCheck(L_31); int32_t L_32; L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL); if (L_32) { goto IL_00d9; } } { String_t* L_33 = ___prefix0; NullCheck(L_33); int32_t L_34; L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_33, NULL); if ((((int32_t)L_34) <= ((int32_t)0))) { goto IL_00d9; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_35 = ___attr2; NullCheck(L_35); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_36 = (&L_35->___lineInfo_10); int32_t L_37 = L_36->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_38 = ___attr2; NullCheck(L_38); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_39 = (&L_38->___lineInfo_10); int32_t L_40 = L_39->___linePos_1; XmlTextReaderImpl_Throw_m24DD009B3659BA3348BCC1A9EC0335E1D8245C63(__this, _stringLiteral11FD22D825C5C7EEDE7CA43876F02B7D8B4C213F, L_37, L_40, NULL); } IL_00d9: { } try {// begin try (depth: 1) XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_41 = __this->___namespaceManager_38; String_t* L_42 = ___prefix0; String_t* L_43 = ___uri1; NullCheck(L_41); VirtualActionInvoker2< String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_41, L_42, L_43); goto IL_0109; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00e9; } throw e; } CATCH_00e9: {// begin catch(System.ArgumentException) V_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_44 = V_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_45 = ___attr2; NullCheck(L_45); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_46 = (&L_45->___lineInfo_10); int32_t L_47 = L_46->___lineNo_0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_48 = ___attr2; NullCheck(L_48); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_49 = (&L_48->___lineInfo_10); int32_t L_50 = L_49->___linePos_1; XmlTextReaderImpl_ReThrow_m58456B276A63FC28D06E961818452191F19A7502(__this, L_44, L_47, L_50, NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0109; }// end catch (depth: 1) IL_0109: { return; } } // System.Void System.Xml.XmlTextReaderImpl::ResetAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ResetAttributes_m2E88D9765B460D463079DC959DA71B940FBE014C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___fullAttrCleanup_18; if (!L_0) { goto IL_000e; } } { XmlTextReaderImpl_FullAttributeCleanup_m3F7C15D39EFF3CF7FF7D5AF2BE1F2D3BAEF566CF(__this, NULL); } IL_000e: { __this->___curAttrIndex_13 = (-1); __this->___attrCount_14 = 0; __this->___attrHashtable_15 = 0; __this->___attrDuplWalkCount_16 = 0; return; } } // System.Void System.Xml.XmlTextReaderImpl::FullAttributeCleanup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FullAttributeCleanup_m3F7C15D39EFF3CF7FF7D5AF2BE1F2D3BAEF566CF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->___index_12; V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1)); goto IL_0024; } IL_000b: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_1 = __this->___nodes_10; int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = (L_1)->GetAt(static_cast(L_3)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = L_4; NullCheck(L_5); L_5->___nextAttrValueChunk_17 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_5->___nextAttrValueChunk_17), (void*)(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)NULL); NullCheck(L_5); NodeData_set_IsDefaultAttribute_m6CFE78C360F0CAADE7E1398F7527374253267DCD_inline(L_5, (bool)0, NULL); int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1)); } IL_0024: { int32_t L_7 = V_0; int32_t L_8 = __this->___index_12; int32_t L_9 = __this->___attrCount_14; if ((((int32_t)L_7) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_8, L_9)), 1))))) { goto IL_000b; } } { __this->___fullAttrCleanup_18 = (bool)0; return; } } // System.Void System.Xml.XmlTextReaderImpl::PushXmlContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushXmlContext_m32D32A6DD05D7274AB2762228D3DFA63083F0A9C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_0 = __this->___xmlContext_40; XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_1 = (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE*)il2cpp_codegen_object_new(XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE_il2cpp_TypeInfo_var); NullCheck(L_1); XmlContext__ctor_m36F921052A4E95CFAF89B426EF20D602C5F16C7D(L_1, L_0, NULL); __this->___xmlContext_40 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlContext_40), (void*)L_1); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; NullCheck(L_2); L_2->___xmlContextPushed_16 = (bool)1; return; } } // System.Void System.Xml.XmlTextReaderImpl::PopXmlContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopXmlContext_mE8BF33631E261B70541D99D0F2FBFDC5DB9847E6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_0 = __this->___xmlContext_40; NullCheck(L_0); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_1 = L_0->___previousContext_3; __this->___xmlContext_40 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlContext_40), (void*)L_1); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; NullCheck(L_2); L_2->___xmlContextPushed_16 = (bool)0; return; } } // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::GetWhitespaceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetWhitespaceType_m742B2D50EDE39B9E1D98E0E6EA61A87C459EF2C7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___whitespaceHandling_26; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_0025; } } { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_1 = __this->___xmlContext_40; NullCheck(L_1); int32_t L_2 = L_1->___xmlSpace_0; if ((!(((uint32_t)L_2) == ((uint32_t)2)))) { goto IL_001a; } } { return (int32_t)(((int32_t)14)); } IL_001a: { int32_t L_3 = __this->___whitespaceHandling_26; if (L_3) { goto IL_0025; } } { return (int32_t)(((int32_t)13)); } IL_0025: { return (int32_t)(0); } } // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::GetTextNodeType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetTextNodeType_mD21D8EAFAE32988277E39963DC7A0F978FDE9062 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___orChars0, const RuntimeMethod* method) { { int32_t L_0 = ___orChars0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32)))) { goto IL_0007; } } { return (int32_t)(3); } IL_0007: { int32_t L_1; L_1 = XmlTextReaderImpl_GetWhitespaceType_m742B2D50EDE39B9E1D98E0E6EA61A87C459EF2C7(__this, NULL); return L_1; } } // System.Void System.Xml.XmlTextReaderImpl::PushExternalEntityOrSubset(System.String,System.String,System.Uri,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushExternalEntityOrSubset_m6512BA1B5A447175E8A0B00D75A62D25F04E8BA0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___publicId0, String_t* ___systemId1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri2, String_t* ___entityName3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A296BDE05384B1131431F0CFA2EB755E12F20E4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99F19C3C64E4DA42B933F242D187F672BFE457C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE17BBA8A473D59FFCC3E1CE5B765B2C174385B7F); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; Exception_t* V_1 = NULL; String_t* V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B13_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B12_0 = NULL; String_t* G_B14_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B14_1 = NULL; int32_t G_B18_0 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B18_1 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B18_2 = NULL; String_t* G_B18_3 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B18_4 = NULL; int32_t G_B17_0 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B17_1 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B17_2 = NULL; String_t* G_B17_3 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B17_4 = NULL; String_t* G_B19_0 = NULL; int32_t G_B19_1 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B19_2 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B19_3 = NULL; String_t* G_B19_4 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B19_5 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B22_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B21_0 = NULL; String_t* G_B23_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B23_1 = NULL; { String_t* L_0 = ___publicId0; bool L_1; L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL); if (L_1) { goto IL_0029; } } try {// begin try (depth: 1) { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2 = __this->___xmlResolver_22; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___baseUri2; String_t* L_4 = ___publicId0; NullCheck(L_2); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_5; L_5 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_2, L_3, L_4); V_0 = L_5; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = V_0; bool L_7; L_7 = XmlTextReaderImpl_OpenAndPush_m605AAB188653B4DA412AD98AB6C547DB280E9DC4(__this, L_6, NULL); if (!L_7) { goto IL_0024_1; } } { goto IL_00d2; } IL_0024_1: { goto IL_0029; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0026; } throw e; } CATCH_0026: {// begin catch(System.Exception) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0029; }// end catch (depth: 1) IL_0029: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_8 = __this->___xmlResolver_22; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = ___baseUri2; String_t* L_10 = ___systemId1; NullCheck(L_8); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11; L_11 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_8, L_9, L_10); V_0 = L_11; } try {// begin try (depth: 1) { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_12 = V_0; bool L_13; L_13 = XmlTextReaderImpl_OpenAndPush_m605AAB188653B4DA412AD98AB6C547DB280E9DC4(__this, L_12, NULL); if (!L_13) { goto IL_0045_1; } } { goto IL_00d2; } IL_0045_1: { goto IL_008c; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0047; } throw e; } CATCH_0047: {// begin catch(System.Exception) { V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)); bool L_14 = __this->___v1Compat_37; if (!L_14) { goto IL_0052; } } { IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_PushExternalEntityOrSubset_m6512BA1B5A447175E8A0B00D75A62D25F04E8BA0_RuntimeMethod_var))); } IL_0052: { Exception_t* L_15 = V_1; NullCheck(L_15); String_t* L_16; L_16 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_15); V_2 = L_16; String_t* L_17 = ___entityName3; G_B12_0 = __this; if (!L_17) { G_B13_0 = __this; goto IL_0065; } } { G_B14_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F0ED44759FB9D445390E9BFD2CE4A97F58BBBA9)); G_B14_1 = G_B12_0; goto IL_006a; } IL_0065: { G_B14_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral226FFA80152D23D5393D03AF02D1C90D7880F548)); G_B14_1 = G_B13_0; } IL_006a: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_18; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_20 = V_0; NullCheck(L_20); String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_20); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_21); (L_19)->SetAt(static_cast(0), (String_t*)L_21); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22 = L_19; String_t* L_23 = V_2; NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast(1), (String_t*)L_23); Exception_t* L_24 = V_1; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_25 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_25); XmlException__ctor_m7E1498E19EBB6E85EC10AA3F9F5A40CA0C5D3F68(L_25, G_B14_0, L_22, L_24, 0, 0, NULL); NullCheck(G_B14_1); XmlTextReaderImpl_Throw_m9ECEA80AD460894085EF82E9F5F55B74FA0A5525(G_B14_1, L_25, NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_008c; } }// end catch (depth: 1) IL_008c: { String_t* L_26 = ___entityName3; if (L_26) { goto IL_00b5; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27; String_t* L_29 = ___publicId0; G_B17_0 = 0; G_B17_1 = L_28; G_B17_2 = L_28; G_B17_3 = _stringLiteralE17BBA8A473D59FFCC3E1CE5B765B2C174385B7F; G_B17_4 = __this; if (L_29) { G_B18_0 = 0; G_B18_1 = L_28; G_B18_2 = L_28; G_B18_3 = _stringLiteralE17BBA8A473D59FFCC3E1CE5B765B2C174385B7F; G_B18_4 = __this; goto IL_00a8; } } { String_t* L_30 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B19_0 = L_30; G_B19_1 = G_B17_0; G_B19_2 = G_B17_1; G_B19_3 = G_B17_2; G_B19_4 = G_B17_3; G_B19_5 = G_B17_4; goto IL_00a9; } IL_00a8: { String_t* L_31 = ___publicId0; G_B19_0 = L_31; G_B19_1 = G_B18_0; G_B19_2 = G_B18_1; G_B19_3 = G_B18_2; G_B19_4 = G_B18_3; G_B19_5 = G_B18_4; } IL_00a9: { NullCheck(G_B19_2); ArrayElementTypeCheck (G_B19_2, G_B19_0); (G_B19_2)->SetAt(static_cast(G_B19_1), (String_t*)G_B19_0); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = G_B19_3; String_t* L_33 = ___systemId1; NullCheck(L_32); ArrayElementTypeCheck (L_32, L_33); (L_32)->SetAt(static_cast(1), (String_t*)L_33); NullCheck(G_B19_5); XmlTextReaderImpl_ThrowWithoutLineInfo_m3F88E00870704C2A8B25E655F6EE70D8A5E572DD(G_B19_5, G_B19_4, L_32, (Exception_t*)NULL, NULL); return; } IL_00b5: { int32_t L_34 = __this->___dtdProcessing_27; G_B21_0 = __this; if ((((int32_t)L_34) == ((int32_t)1))) { G_B22_0 = __this; goto IL_00c6; } } { G_B23_0 = _stringLiteral99F19C3C64E4DA42B933F242D187F672BFE457C6; G_B23_1 = G_B21_0; goto IL_00cb; } IL_00c6: { G_B23_0 = _stringLiteral6A296BDE05384B1131431F0CFA2EB755E12F20E4; G_B23_1 = G_B22_0; } IL_00cb: { String_t* L_35 = ___entityName3; NullCheck(G_B23_1); XmlTextReaderImpl_Throw_m859526BA653ED17DCB75917A70D2E7F1FA2914C2(G_B23_1, G_B23_0, L_35, NULL); } IL_00d2: { return; } } // System.Boolean System.Xml.XmlTextReaderImpl::OpenAndPush(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_OpenAndPush_m605AAB188653B4DA412AD98AB6C547DB280E9DC4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* V_0 = NULL; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_1 = NULL; { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___xmlResolver_22; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___uri0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_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); NullCheck(L_0); bool L_4; L_4 = VirtualFuncInvoker2< bool, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Type_t* >::Invoke(6 /* System.Boolean System.Xml.XmlResolver::SupportsType(System.Uri,System.Type) */, L_0, L_1, L_3); if (!L_4) { goto IL_0050; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_5 = __this->___xmlResolver_22; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = ___uri0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_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); NullCheck(L_5); RuntimeObject* L_9; L_9 = VirtualFuncInvoker3< RuntimeObject*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t*, Type_t* >::Invoke(4 /* System.Object System.Xml.XmlResolver::GetEntity(System.Uri,System.String,System.Type) */, L_5, L_6, (String_t*)NULL, L_8); V_0 = ((TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)CastclassClass((RuntimeObject*)L_9, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_il2cpp_TypeInfo_var)); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_10 = V_0; if (L_10) { goto IL_003a; } } { return (bool)0; } IL_003a: { XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7(__this, NULL); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11 = ___uri0; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = ___uri0; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_14 = V_0; XmlTextReaderImpl_InitTextReaderInput_mFA8F8F8AAD41AF30E00B733D8D3998D7C018DC87(__this, L_12, L_13, L_14, NULL); goto IL_0081; } IL_0050: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_15 = __this->___xmlResolver_22; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = ___uri0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_18; L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL); NullCheck(L_15); RuntimeObject* L_19; L_19 = VirtualFuncInvoker3< RuntimeObject*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t*, Type_t* >::Invoke(4 /* System.Object System.Xml.XmlResolver::GetEntity(System.Uri,System.String,System.Type) */, L_15, L_16, (String_t*)NULL, L_18); V_1 = ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_19, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_20 = V_1; if (L_20) { goto IL_0072; } } { return (bool)0; } IL_0072: { XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7(__this, NULL); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = ___uri0; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_22 = V_1; XmlTextReaderImpl_InitStreamInput_m89A74BC08EA5E6FB283BBA9FFB6B4C769AD7D8A6(__this, L_21, L_22, (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL, NULL); } IL_0081: { return (bool)1; } } // System.Boolean System.Xml.XmlTextReaderImpl::PushExternalEntity(System.Xml.IDtdEntityInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_PushExternalEntity_m547C80F437D100BC53D09B4E965BB58CE026557D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; int32_t V_1 = 0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_2 = NULL; { bool L_0; L_0 = XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C(__this, NULL); if (L_0) { goto IL_007d; } } { V_0 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; RuntimeObject* L_1 = ___entity0; NullCheck(L_1); String_t* L_2; L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.IDtdEntityInfo::get_BaseUriString() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_1); bool L_3; L_3 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_2, NULL); if (L_3) { goto IL_002a; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_4 = __this->___xmlResolver_22; RuntimeObject* L_5 = ___entity0; NullCheck(L_5); String_t* L_6; L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.IDtdEntityInfo::get_BaseUriString() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_5); NullCheck(L_4); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7; L_7 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_4, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_6); V_0 = L_7; } IL_002a: { RuntimeObject* L_8 = ___entity0; NullCheck(L_8); String_t* L_9; L_9 = InterfaceFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.IDtdEntityInfo::get_PublicId() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_8); RuntimeObject* L_10 = ___entity0; NullCheck(L_10); String_t* L_11; L_11 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.IDtdEntityInfo::get_SystemId() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_10); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_12 = V_0; RuntimeObject* L_13 = ___entity0; NullCheck(L_13); String_t* L_14; L_14 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdEntityInfo::get_Name() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_13); XmlTextReaderImpl_PushExternalEntityOrSubset_m6512BA1B5A447175E8A0B00D75A62D25F04E8BA0(__this, L_9, L_11, L_12, L_14, NULL); RuntimeObject* L_15 = ___entity0; XmlTextReaderImpl_RegisterEntity_m8ABF06A846B69E6471AB0CBFEF79E543D5C02209(__this, L_15, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); int32_t L_17 = L_16->___charPos_1; V_1 = L_17; bool L_18 = __this->___v1Compat_37; if (!L_18) { goto IL_0066; } } { int32_t L_19; L_19 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); } IL_0066: { bool L_20; L_20 = XmlTextReaderImpl_ParseXmlDeclaration_mE57790EE79B349C9AA99472BA1B5DE58604660EA(__this, (bool)1, NULL); if (L_20) { goto IL_007b; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_21 = (&__this->___ps_6); int32_t L_22 = V_1; L_21->___charPos_1 = L_22; } IL_007b: { return (bool)1; } IL_007d: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_23 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_24 = L_23->___encoding_3; V_2 = L_24; XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7(__this, NULL); RuntimeObject* L_25 = ___entity0; NullCheck(L_25); String_t* L_26; L_26 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.IDtdEntityInfo::get_SystemId() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_25); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_27 = V_2; String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(__this, L_26, L_27, L_28, NULL); RuntimeObject* L_29 = ___entity0; XmlTextReaderImpl_RegisterEntity_m8ABF06A846B69E6471AB0CBFEF79E543D5C02209(__this, L_29, NULL); XmlTextReaderImpl_RegisterConsumedCharacters_mC93EC992AB264BC7A08D193CEB0A87806E799D68(__this, ((int64_t)0), (bool)1, NULL); return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::PushInternalEntity(System.Xml.IDtdEntityInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushInternalEntity_m1D90F101FA95554B361AD62135C9C796C1809407 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B2_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B1_0 = NULL; String_t* G_B3_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_1 = NULL; String_t* G_B5_0 = NULL; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* G_B5_1 = NULL; String_t* G_B5_2 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B5_3 = NULL; String_t* G_B4_0 = NULL; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* G_B4_1 = NULL; String_t* G_B4_2 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_3 = NULL; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = L_0->___encoding_3; V_0 = L_1; XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7(__this, NULL); RuntimeObject* L_2 = ___entity0; NullCheck(L_2); String_t* L_3; L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.IDtdEntityInfo::get_DeclaredUriString() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_2); G_B1_0 = __this; if (L_3) { G_B2_0 = __this; goto IL_0022; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B3_0 = L_4; G_B3_1 = G_B1_0; goto IL_0028; } IL_0022: { RuntimeObject* L_5 = ___entity0; NullCheck(L_5); String_t* L_6; L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.IDtdEntityInfo::get_DeclaredUriString() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_5); G_B3_0 = L_6; G_B3_1 = G_B2_0; } IL_0028: { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7 = V_0; RuntimeObject* L_8 = ___entity0; NullCheck(L_8); String_t* L_9; L_9 = InterfaceFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.IDtdEntityInfo::get_Text() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_8); String_t* L_10 = L_9; G_B4_0 = L_10; G_B4_1 = L_7; G_B4_2 = G_B3_0; G_B4_3 = G_B3_1; if (L_10) { G_B5_0 = L_10; G_B5_1 = L_7; G_B5_2 = G_B3_0; G_B5_3 = G_B3_1; goto IL_0038; } } { String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B5_0 = L_11; G_B5_1 = G_B4_1; G_B5_2 = G_B4_2; G_B5_3 = G_B4_3; } IL_0038: { NullCheck(G_B5_3); XmlTextReaderImpl_InitStringInput_m1436DEAEA65A2E1683BB1169CF5ADA6E2E620E52(G_B5_3, G_B5_2, G_B5_1, G_B5_0, NULL); RuntimeObject* L_12 = ___entity0; XmlTextReaderImpl_RegisterEntity_m8ABF06A846B69E6471AB0CBFEF79E543D5C02209(__this, L_12, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_13 = (&__this->___ps_6); RuntimeObject* L_14 = ___entity0; NullCheck(L_14); int32_t L_15; L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Xml.IDtdEntityInfo::get_LineNumber() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_14); L_13->___lineNo_11 = L_15; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); RuntimeObject* L_17 = ___entity0; NullCheck(L_17); int32_t L_18; L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.Xml.IDtdEntityInfo::get_LinePosition() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_17); L_16->___lineStartPos_12 = ((int32_t)il2cpp_codegen_subtract(((-L_18)), 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_19 = (&__this->___ps_6); L_19->___eolNormalized_19 = (bool)1; RuntimeObject* L_20 = ___entity0; NullCheck(L_20); String_t* L_21; L_21 = InterfaceFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.IDtdEntityInfo::get_Text() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_20); NullCheck(L_21); int32_t L_22; L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL); XmlTextReaderImpl_RegisterConsumedCharacters_mC93EC992AB264BC7A08D193CEB0A87806E799D68(__this, ((int64_t)L_22), (bool)1, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::PopEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopEntity_m3F59397F9382BD7DF60D2249186E342F4EAC99E0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = L_0->___stream_5; if (!L_1) { goto IL_001d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = L_2->___stream_5; NullCheck(L_3); VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_3); } IL_001d: { XmlTextReaderImpl_UnregisterEntity_m616D7ADE3585C0654A1374298FF7F9208C7E35CB(__this, NULL); XmlTextReaderImpl_PopParsingState_m6F5CF788CF5233E312DFB006D075BE7D37374D71(__this, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); int32_t L_6 = L_5->___entityId_18; NullCheck(L_4); L_4->___entityId_15 = L_6; return; } } // System.Void System.Xml.XmlTextReaderImpl::RegisterEntity(System.Xml.IDtdEntityInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_RegisterEntity_m8ABF06A846B69E6471AB0CBFEF79E543D5C02209 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m6B646FC3E69ADA1E841FA6878E43A4EBEDEE6AB0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m5CEBA3CC956CC2C106666A910118133F1E696D84_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m6210F59C2C6D70022557B14383A77B307D8E5E4A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD27E638C5F6B34DE55DDC1E7B33B6C164CB88CAC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BAFB0222941360F2752ADB95BF13DFDF07C373); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B4_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_0 = NULL; String_t* G_B5_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B5_1 = NULL; { Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* L_0 = __this->___currentEntities_73; if (!L_0) { goto IL_0062; } } { Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* L_1 = __this->___currentEntities_73; RuntimeObject* L_2 = ___entity0; NullCheck(L_1); bool L_3; L_3 = Dictionary_2_ContainsKey_m5CEBA3CC956CC2C106666A910118133F1E696D84(L_1, L_2, Dictionary_2_ContainsKey_m5CEBA3CC956CC2C106666A910118133F1E696D84_RuntimeMethod_var); if (!L_3) { goto IL_0062; } } { RuntimeObject* L_4 = ___entity0; NullCheck(L_4); bool L_5; L_5 = InterfaceFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsParameterEntity() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_4); G_B3_0 = __this; if (L_5) { G_B4_0 = __this; goto IL_0026; } } { G_B5_0 = _stringLiteralD27E638C5F6B34DE55DDC1E7B33B6C164CB88CAC; G_B5_1 = G_B3_0; goto IL_002b; } IL_0026: { G_B5_0 = _stringLiteralE9BAFB0222941360F2752ADB95BF13DFDF07C373; G_B5_1 = G_B4_0; } IL_002b: { RuntimeObject* L_6 = ___entity0; NullCheck(L_6); String_t* L_7; L_7 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdEntityInfo::get_Name() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_6); ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_8 = __this->___parsingStatesStack_41; int32_t L_9 = __this->___parsingStatesStackTop_42; NullCheck(L_8); int32_t L_10; L_10 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(((L_8)->GetAddressAt(static_cast(L_9))), NULL); ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_11 = __this->___parsingStatesStack_41; int32_t L_12 = __this->___parsingStatesStackTop_42; NullCheck(L_11); int32_t L_13; L_13 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(((L_11)->GetAddressAt(static_cast(L_12))), NULL); NullCheck(G_B5_1); XmlTextReaderImpl_Throw_mC803D5A772B620AF824AFBAB3BC5FC546739E35E(G_B5_1, G_B5_0, L_7, L_10, L_13, NULL); } IL_0062: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_14 = (&__this->___ps_6); RuntimeObject* L_15 = ___entity0; L_14->___entity_17 = L_15; Il2CppCodeGenWriteBarrier((void**)(&L_14->___entity_17), (void*)L_15); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); int32_t L_17 = __this->___nextEntityId_64; V_0 = L_17; int32_t L_18 = V_0; __this->___nextEntityId_64 = ((int32_t)il2cpp_codegen_add(L_18, 1)); int32_t L_19 = V_0; L_16->___entityId_18 = L_19; RuntimeObject* L_20 = ___entity0; if (!L_20) { goto IL_00ad; } } { Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* L_21 = __this->___currentEntities_73; if (L_21) { goto IL_00a0; } } { Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* L_22 = (Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D*)il2cpp_codegen_object_new(Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D_il2cpp_TypeInfo_var); NullCheck(L_22); Dictionary_2__ctor_m6210F59C2C6D70022557B14383A77B307D8E5E4A(L_22, Dictionary_2__ctor_m6210F59C2C6D70022557B14383A77B307D8E5E4A_RuntimeMethod_var); __this->___currentEntities_73 = L_22; Il2CppCodeGenWriteBarrier((void**)(&__this->___currentEntities_73), (void*)L_22); } IL_00a0: { Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* L_23 = __this->___currentEntities_73; RuntimeObject* L_24 = ___entity0; RuntimeObject* L_25 = ___entity0; NullCheck(L_23); Dictionary_2_Add_m6B646FC3E69ADA1E841FA6878E43A4EBEDEE6AB0(L_23, L_24, L_25, Dictionary_2_Add_m6B646FC3E69ADA1E841FA6878E43A4EBEDEE6AB0_RuntimeMethod_var); } IL_00ad: { return; } } // System.Void System.Xml.XmlTextReaderImpl::UnregisterEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_UnregisterEntity_m616D7ADE3585C0654A1374298FF7F9208C7E35CB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m37E94DC039C08FA639889E09411C8BC5730643B5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); RuntimeObject* L_1 = L_0->___entity_17; if (!L_1) { goto IL_0024; } } { Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* L_2 = __this->___currentEntities_73; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); RuntimeObject* L_4 = L_3->___entity_17; NullCheck(L_2); bool L_5; L_5 = Dictionary_2_Remove_m37E94DC039C08FA639889E09411C8BC5730643B5(L_2, L_4, Dictionary_2_Remove_m37E94DC039C08FA639889E09411C8BC5730643B5_RuntimeMethod_var); } IL_0024: { return; } } // System.Void System.Xml.XmlTextReaderImpl::PushParsingState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PushParsingState_m9E8EA67D5D3A6764AD726BF591415B6BCE2291D7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* V_0 = NULL; { ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_0 = __this->___parsingStatesStack_41; if (L_0) { goto IL_0016; } } { ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_1 = (ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29*)(ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29*)SZArrayNew(ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29_il2cpp_TypeInfo_var, (uint32_t)2); __this->___parsingStatesStack_41 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___parsingStatesStack_41), (void*)L_1); goto IL_0055; } IL_0016: { int32_t L_2 = __this->___parsingStatesStackTop_42; ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_3 = __this->___parsingStatesStack_41; NullCheck(L_3); if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_2, 1))) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))) { goto IL_0055; } } { ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_4 = __this->___parsingStatesStack_41; NullCheck(L_4); ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_5 = (ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29*)(ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29*)SZArrayNew(ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_4)->max_length)), 2))); V_0 = L_5; ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_6 = __this->___parsingStatesStack_41; ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_7 = V_0; ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_8 = __this->___parsingStatesStack_41; NullCheck(L_8); Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_6, 0, (RuntimeArray*)L_7, 0, ((int32_t)(((RuntimeArray*)L_8)->max_length)), NULL); ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_9 = V_0; __this->___parsingStatesStack_41 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___parsingStatesStack_41), (void*)L_9); } IL_0055: { int32_t L_10 = __this->___parsingStatesStackTop_42; __this->___parsingStatesStackTop_42 = ((int32_t)il2cpp_codegen_add(L_10, 1)); ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_11 = __this->___parsingStatesStack_41; int32_t L_12 = __this->___parsingStatesStackTop_42; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 L_13 = __this->___ps_6; NullCheck(L_11); (L_11)->SetAt(static_cast(L_12), (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886)L_13); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_14 = (&__this->___ps_6); ParsingState_Clear_mA3F9CDD851956A92A6F8BAFAA70A20192BB1FED4(L_14, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::PopParsingState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_PopParsingState_m6F5CF788CF5233E312DFB006D075BE7D37374D71 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008(L_0, (bool)1, NULL); ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* L_1 = __this->___parsingStatesStack_41; int32_t L_2 = __this->___parsingStatesStackTop_42; V_0 = L_2; int32_t L_3 = V_0; __this->___parsingStatesStackTop_42 = ((int32_t)il2cpp_codegen_subtract(L_3, 1)); int32_t L_4 = V_0; NullCheck(L_1); int32_t L_5 = L_4; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 L_6 = (L_1)->GetAt(static_cast(L_5)); __this->___ps_6 = L_6; Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___chars_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___encoding_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___stream_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___decoder_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___bytes_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___textReader_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___baseUriStr_13), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___baseUri_14), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&__this->___ps_6))->___entity_17), (void*)NULL); #endif return; } } // System.Int32 System.Xml.XmlTextReaderImpl::IncrementalRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_IncrementalRead_m856D6F97D4CF43CFE3E229178B1A98F34517D7F3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9BBA939AADAC7131171CCBDAAF0369B087259893); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* V_5 = NULL; int32_t V_6 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_7 = NULL; int32_t V_8 = 0; int32_t V_9 = 0; Il2CppChar V_10 = 0x0; Il2CppChar V_11 = 0x0; Il2CppChar V_12 = 0x0; int32_t V_13 = 0; int32_t V_14 = 0; int32_t V_15 = 0; int32_t V_16 = 0; int32_t V_17 = 0; int32_t V_18 = 0; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* V_19 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B20_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B18_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B19_0 = NULL; int32_t G_B21_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B21_1 = NULL; { V_0 = 0; } IL_0002: { int32_t L_0 = __this->___incReadLeftEndPos_54; int32_t L_1 = __this->___incReadLeftStartPos_53; V_1 = ((int32_t)il2cpp_codegen_subtract(L_0, L_1)); int32_t L_2 = V_1; if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_00b7; } } try {// begin try (depth: 1) IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* L_3 = __this->___incReadDecoder_49; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4->___chars_0; int32_t L_6 = __this->___incReadLeftStartPos_53; int32_t L_7 = V_1; NullCheck(L_3); int32_t L_8; L_8 = VirtualFuncInvoker3< int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Xml.IncrementalReadDecoder::Decode(System.Char[],System.Int32,System.Int32) */, L_3, L_5, L_6, L_7); V_4 = L_8; goto IL_0060; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0038; } throw e; } CATCH_0038: {// begin catch(System.Xml.XmlException) V_5 = ((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_9 = V_5; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_10 = (&__this->___incReadLineInfo_51); int32_t L_11 = L_10->___lineNo_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_12 = (&__this->___incReadLineInfo_51); int32_t L_13 = L_12->___linePos_1; XmlTextReaderImpl_ReThrow_m58456B276A63FC28D06E961818452191F19A7502(__this, L_9, L_11, L_13, NULL); V_6 = 0; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_072c; }// end catch (depth: 1) IL_0060: { int32_t L_14 = V_4; int32_t L_15 = V_1; if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0088; } } { int32_t L_16 = __this->___incReadLeftStartPos_53; int32_t L_17 = V_4; __this->___incReadLeftStartPos_53 = ((int32_t)il2cpp_codegen_add(L_16, L_17)); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_18 = (&__this->___incReadLineInfo_51); int32_t* L_19 = (&L_18->___linePos_1); int32_t* L_20 = L_19; int32_t L_21 = *((int32_t*)L_20); int32_t L_22 = V_4; *((int32_t*)L_20) = (int32_t)((int32_t)il2cpp_codegen_add(L_21, L_22)); int32_t L_23 = V_4; return L_23; } IL_0088: { __this->___incReadLeftStartPos_53 = 0; __this->___incReadLeftEndPos_54 = 0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_24 = (&__this->___incReadLineInfo_51); int32_t* L_25 = (&L_24->___linePos_1); int32_t* L_26 = L_25; int32_t L_27 = *((int32_t*)L_26); int32_t L_28 = V_4; *((int32_t*)L_26) = (int32_t)((int32_t)il2cpp_codegen_add(L_27, L_28)); IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* L_29 = __this->___incReadDecoder_49; NullCheck(L_29); bool L_30; L_30 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.IncrementalReadDecoder::get_IsFull() */, L_29); if (!L_30) { goto IL_00b7; } } { int32_t L_31 = V_4; return L_31; } IL_00b7: { V_2 = 0; V_3 = 0; } IL_00bb: { int32_t L_32 = __this->___incReadState_50; V_9 = L_32; int32_t L_33 = V_9; switch (L_33) { case 0: { goto IL_01d7; } case 1: { goto IL_01d7; } case 2: { goto IL_00f7; } case 3: { goto IL_014e; } case 4: { goto IL_0122; } case 5: { goto IL_01d7; } case 6: { goto IL_01d7; } case 7: { goto IL_01b4; } case 8: { goto IL_017a; } case 9: { goto IL_01b2; } } } { goto IL_01d7; } IL_00f7: { bool L_34; L_34 = XmlTextReaderImpl_ParsePIValue_mBFEE75456754EE92FB4FECAF6995FA346A725CE1(__this, (&V_2), (&V_3), NULL); if (!L_34) { goto IL_06a4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_35 = (&__this->___ps_6); int32_t* L_36 = (&L_35->___charPos_1); int32_t* L_37 = L_36; int32_t L_38 = *((int32_t*)L_37); *((int32_t*)L_37) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_38, 2)); __this->___incReadState_50 = 0; goto IL_06a4; } IL_0122: { bool L_39; L_39 = XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3(__this, 8, (&V_2), (&V_3), NULL); if (!L_39) { goto IL_06a4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_40 = (&__this->___ps_6); int32_t* L_41 = (&L_40->___charPos_1); int32_t* L_42 = L_41; int32_t L_43 = *((int32_t*)L_42); *((int32_t*)L_42) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_43, 3)); __this->___incReadState_50 = 0; goto IL_06a4; } IL_014e: { bool L_44; L_44 = XmlTextReaderImpl_ParseCDataOrComment_m07B11C083003E41B4A2798E1EDF31125D90E29D3(__this, 4, (&V_2), (&V_3), NULL); if (!L_44) { goto IL_06a4; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_45 = (&__this->___ps_6); int32_t* L_46 = (&L_45->___charPos_1); int32_t* L_47 = L_46; int32_t L_48 = *((int32_t*)L_47); *((int32_t*)L_47) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_48, 3)); __this->___incReadState_50 = 0; goto IL_06a4; } IL_017a: { __this->___parsingFunction_7 = 7; int32_t L_49 = __this->___index_12; G_B18_0 = __this; if ((((int32_t)L_49) > ((int32_t)0))) { G_B20_0 = __this; goto IL_0198; } } { int32_t L_50 = __this->___fragmentType_46; G_B19_0 = G_B18_0; if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)9))))) { G_B20_0 = G_B18_0; goto IL_0198; } } { G_B21_0 = 5; G_B21_1 = G_B19_0; goto IL_0199; } IL_0198: { G_B21_0 = 0; G_B21_1 = G_B20_0; } IL_0199: { NullCheck(G_B21_1); G_B21_1->___nextParsingFunction_8 = G_B21_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_51 = __this->___outerReader_75; NullCheck(L_51); bool L_52; L_52 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_51); __this->___incReadState_50 = ((int32_t)9); } IL_01b2: { int32_t L_53 = V_0; return L_53; } IL_01b4: { int32_t L_54; L_54 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_54) { goto IL_01c2; } } { XmlTextReaderImpl_ThrowUnclosedElements_mFA0049DEE3737C89E5B993FC759912F44FBD70E2(__this, NULL); } IL_01c2: { __this->___incReadState_50 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t L_56 = L_55->___charPos_1; V_2 = L_56; int32_t L_57 = V_2; V_3 = L_57; } IL_01d7: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_58 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = L_58->___chars_0; V_7 = L_59; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_60 = (&__this->___ps_6); int32_t L_61 = L_60->___charPos_1; V_2 = L_61; int32_t L_62 = V_2; V_3 = L_62; } IL_01f2: { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_63 = (&__this->___incReadLineInfo_51); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_64 = (&__this->___ps_6); int32_t L_65; L_65 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_64, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_66 = (&__this->___ps_6); int32_t L_67; L_67 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_66, NULL); LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_63, L_65, L_67, NULL); int32_t L_68 = __this->___incReadState_50; if ((!(((uint32_t)L_68) == ((uint32_t)5)))) { goto IL_0249; } } { goto IL_0222; } IL_021e: { int32_t L_69 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_69, 1)); } IL_0222: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_70 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_71 = L_70->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_72 = V_7; int32_t L_73 = V_3; NullCheck(L_72); int32_t L_74 = L_73; uint16_t L_75 = (uint16_t)(L_72)->GetAt(static_cast(L_74)); uint16_t L_76 = L_75; V_10 = L_76; NullCheck(L_71); uint16_t L_77 = L_76; uint8_t L_78 = (L_71)->GetAt(static_cast(L_77)); if (!((int32_t)((int32_t)L_78&((int32_t)128)))) { goto IL_0264; } } { Il2CppChar L_79 = V_10; if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)47))))) { goto IL_021e; } } { goto IL_0264; } IL_0245: { int32_t L_80 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_80, 1)); } IL_0249: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_81 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_82 = L_81->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_83 = V_7; int32_t L_84 = V_3; NullCheck(L_83); int32_t L_85 = L_84; uint16_t L_86 = (uint16_t)(L_83)->GetAt(static_cast(L_85)); uint16_t L_87 = L_86; V_10 = L_87; NullCheck(L_82); uint16_t L_88 = L_87; uint8_t L_89 = (L_82)->GetAt(static_cast(L_88)); if (((int32_t)((int32_t)L_89&((int32_t)128)))) { goto IL_0245; } } IL_0264: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_90 = V_7; int32_t L_91 = V_3; NullCheck(L_90); int32_t L_92 = L_91; uint16_t L_93 = (uint16_t)(L_90)->GetAt(static_cast(L_92)); if ((((int32_t)L_93) == ((int32_t)((int32_t)38)))) { goto IL_0274; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_94 = V_7; int32_t L_95 = V_3; NullCheck(L_94); int32_t L_96 = L_95; uint16_t L_97 = (uint16_t)(L_94)->GetAt(static_cast(L_96)); if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)9))))) { goto IL_027d; } } IL_0274: { int32_t L_98 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_98, 1)); goto IL_01f2; } IL_027d: { int32_t L_99 = V_3; int32_t L_100 = V_2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_99, L_100))) > ((int32_t)0))) { goto IL_0698; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_101 = V_7; int32_t L_102 = V_3; NullCheck(L_101); int32_t L_103 = L_102; uint16_t L_104 = (uint16_t)(L_101)->GetAt(static_cast(L_103)); V_11 = L_104; Il2CppChar L_105 = V_11; if ((!(((uint32_t)L_105) <= ((uint32_t)((int32_t)34))))) { goto IL_02ac; } } { Il2CppChar L_106 = V_11; if ((((int32_t)L_106) == ((int32_t)((int32_t)10)))) { goto IL_02dd; } } { Il2CppChar L_107 = V_11; if ((((int32_t)L_107) == ((int32_t)((int32_t)13)))) { goto IL_02ed; } } { Il2CppChar L_108 = V_11; if ((((int32_t)L_108) == ((int32_t)((int32_t)34)))) { goto IL_062f; } } { goto IL_067a; } IL_02ac: { Il2CppChar L_109 = V_11; if ((!(((uint32_t)L_109) <= ((uint32_t)((int32_t)47))))) { goto IL_02c9; } } { Il2CppChar L_110 = V_11; if ((((int32_t)L_110) == ((int32_t)((int32_t)39)))) { goto IL_062f; } } { Il2CppChar L_111 = V_11; if ((((int32_t)L_111) == ((int32_t)((int32_t)47)))) { goto IL_05d2; } } { goto IL_067a; } IL_02c9: { Il2CppChar L_112 = V_11; if ((((int32_t)L_112) == ((int32_t)((int32_t)60)))) { goto IL_0320; } } { Il2CppChar L_113 = V_11; if ((((int32_t)L_113) == ((int32_t)((int32_t)62)))) { goto IL_0616; } } { goto IL_067a; } IL_02dd: { int32_t L_114 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_114, 1)); int32_t L_115 = V_3; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_115, NULL); goto IL_01f2; } IL_02ed: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_116 = V_7; int32_t L_117 = V_3; NullCheck(L_116); int32_t L_118 = ((int32_t)il2cpp_codegen_add(L_117, 1)); uint16_t L_119 = (uint16_t)(L_116)->GetAt(static_cast(L_118)); if ((!(((uint32_t)L_119) == ((uint32_t)((int32_t)10))))) { goto IL_02fd; } } { int32_t L_120 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_120, 2)); goto IL_0314; } IL_02fd: { int32_t L_121 = V_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_122 = (&__this->___ps_6); int32_t L_123 = L_122->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_121, 1))) >= ((int32_t)L_123))) { goto IL_0691; } } { int32_t L_124 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_124, 1)); } IL_0314: { int32_t L_125 = V_3; XmlTextReaderImpl_OnNewLine_m4BDA88A45BB195347ADC3A2D7796755BE1329D52(__this, L_125, NULL); goto IL_01f2; } IL_0320: { int32_t L_126 = __this->___incReadState_50; if (!L_126) { goto IL_0331; } } { int32_t L_127 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_127, 1)); goto IL_01f2; } IL_0331: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_128 = (&__this->___ps_6); int32_t L_129 = L_128->___charsUsed_2; int32_t L_130 = V_3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_129, L_130))) < ((int32_t)2))) { goto IL_0691; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131 = V_7; int32_t L_132 = V_3; NullCheck(L_131); int32_t L_133 = ((int32_t)il2cpp_codegen_add(L_132, 1)); uint16_t L_134 = (uint16_t)(L_131)->GetAt(static_cast(L_133)); V_12 = L_134; Il2CppChar L_135 = V_12; if ((((int32_t)L_135) == ((int32_t)((int32_t)33)))) { goto IL_0374; } } { Il2CppChar L_136 = V_12; if ((((int32_t)L_136) == ((int32_t)((int32_t)47)))) { goto IL_03e5; } } { Il2CppChar L_137 = V_12; if ((!(((uint32_t)L_137) == ((uint32_t)((int32_t)63))))) { goto IL_050f; } } { int32_t L_138 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_138, 2)); __this->___incReadState_50 = 2; goto IL_0698; } IL_0374: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_139 = (&__this->___ps_6); int32_t L_140 = L_139->___charsUsed_2; int32_t L_141 = V_3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_140, L_141))) < ((int32_t)4))) { goto IL_0691; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_142 = V_7; int32_t L_143 = V_3; NullCheck(L_142); int32_t L_144 = ((int32_t)il2cpp_codegen_add(L_143, 2)); uint16_t L_145 = (uint16_t)(L_142)->GetAt(static_cast(L_144)); if ((!(((uint32_t)L_145) == ((uint32_t)((int32_t)45))))) { goto IL_03ab; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_146 = V_7; int32_t L_147 = V_3; NullCheck(L_146); int32_t L_148 = ((int32_t)il2cpp_codegen_add(L_147, 3)); uint16_t L_149 = (uint16_t)(L_146)->GetAt(static_cast(L_148)); if ((!(((uint32_t)L_149) == ((uint32_t)((int32_t)45))))) { goto IL_03ab; } } { int32_t L_150 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_150, 4)); __this->___incReadState_50 = 4; goto IL_0698; } IL_03ab: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_151 = (&__this->___ps_6); int32_t L_152 = L_151->___charsUsed_2; int32_t L_153 = V_3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_152, L_153))) < ((int32_t)((int32_t)9)))) { goto IL_0691; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_154 = V_7; int32_t L_155 = V_3; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_156; L_156 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_154, ((int32_t)il2cpp_codegen_add(L_155, 2)), 7, _stringLiteral9BBA939AADAC7131171CCBDAAF0369B087259893, NULL); if (!L_156) { goto IL_01f2; } } { int32_t L_157 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_157, ((int32_t)9))); __this->___incReadState_50 = 3; goto IL_0698; } IL_03e5: { int32_t L_158; L_158 = XmlTextReaderImpl_ParseQName_m4230939DD8FF8273EE6963012476F3385B182E97(__this, (bool)1, 2, (&V_13), NULL); V_14 = L_158; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_159 = V_7; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_160 = (&__this->___ps_6); int32_t L_161 = L_160->___charPos_1; int32_t L_162 = V_14; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_163 = (&__this->___ps_6); int32_t L_164 = L_163->___charPos_1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_165 = __this->___curNode_11; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_166 = __this->___nameTable_20; NullCheck(L_165); String_t* L_167; L_167 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_165, L_166, NULL); il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_168; L_168 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_159, ((int32_t)il2cpp_codegen_add(L_161, 2)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_162, L_164)), 2)), L_167, NULL); if (!L_168) { goto IL_04ee; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_169 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_170 = L_169->___chars_0; int32_t L_171 = V_14; NullCheck(L_170); int32_t L_172 = L_171; uint16_t L_173 = (uint16_t)(L_170)->GetAt(static_cast(L_172)); if ((((int32_t)L_173) == ((int32_t)((int32_t)62)))) { goto IL_045b; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_174 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_175 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_176 = L_175->___chars_0; int32_t L_177 = V_14; NullCheck(L_176); int32_t L_178 = L_177; uint16_t L_179 = (uint16_t)(L_176)->GetAt(static_cast(L_178)); bool L_180; L_180 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_174, L_179, NULL); if (!L_180) { goto IL_04ee; } } IL_045b: { int32_t L_181 = __this->___incReadDepth_52; V_15 = ((int32_t)il2cpp_codegen_subtract(L_181, 1)); int32_t L_182 = V_15; __this->___incReadDepth_52 = L_182; int32_t L_183 = V_15; if ((((int32_t)L_183) <= ((int32_t)0))) { goto IL_047c; } } { int32_t L_184 = V_14; V_3 = ((int32_t)il2cpp_codegen_add(L_184, 1)); goto IL_01f2; } IL_047c: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_185 = (&__this->___ps_6); int32_t L_186 = V_14; L_185->___charPos_1 = L_186; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_187 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_188 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_189 = L_188->___chars_0; int32_t L_190 = V_14; NullCheck(L_189); int32_t L_191 = L_190; uint16_t L_192 = (uint16_t)(L_189)->GetAt(static_cast(L_191)); bool L_193; L_193 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_187, L_192, NULL); if (!L_193) { goto IL_04ac; } } { int32_t L_194; L_194 = XmlTextReaderImpl_EatWhitespaces_mF71CA3C85094B4BBCB448D3D15FCF59164490D8B(__this, (StringBuilder_t*)NULL, NULL); } IL_04ac: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_195 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_196 = L_195->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_197 = (&__this->___ps_6); int32_t L_198 = L_197->___charPos_1; NullCheck(L_196); int32_t L_199 = L_198; uint16_t L_200 = (uint16_t)(L_196)->GetAt(static_cast(L_199)); if ((((int32_t)L_200) == ((int32_t)((int32_t)62)))) { goto IL_04d2; } } { XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2(__this, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); } IL_04d2: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_201 = (&__this->___ps_6); int32_t* L_202 = (&L_201->___charPos_1); int32_t* L_203 = L_202; int32_t L_204 = *((int32_t*)L_203); *((int32_t*)L_203) = (int32_t)((int32_t)il2cpp_codegen_add(L_204, 1)); __this->___incReadState_50 = 8; goto IL_0002; } IL_04ee: { int32_t L_205 = V_14; V_3 = L_205; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_206 = (&__this->___ps_6); int32_t L_207 = L_206->___charPos_1; V_2 = L_207; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_208 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_209 = L_208->___chars_0; V_7 = L_209; goto IL_01f2; } IL_050f: { int32_t L_210; L_210 = XmlTextReaderImpl_ParseQName_m4230939DD8FF8273EE6963012476F3385B182E97(__this, (bool)1, 1, (&V_16), NULL); V_17 = L_210; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_211 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_212 = L_211->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_213 = (&__this->___ps_6); int32_t L_214 = L_213->___charPos_1; int32_t L_215 = V_17; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_216 = (&__this->___ps_6); int32_t L_217 = L_216->___charPos_1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_218 = __this->___curNode_11; NullCheck(L_218); String_t* L_219 = L_218->___localName_2; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_220; L_220 = XmlConvert_StrEqual_mBE6FAA3466A3A3725E7D5B2B1AACA9DF96101A91(L_212, ((int32_t)il2cpp_codegen_add(L_214, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_215, L_217)), 1)), L_219, NULL); if (!L_220) { goto IL_05b1; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_221 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_222 = L_221->___chars_0; int32_t L_223 = V_17; NullCheck(L_222); int32_t L_224 = L_223; uint16_t L_225 = (uint16_t)(L_222)->GetAt(static_cast(L_224)); if ((((int32_t)L_225) == ((int32_t)((int32_t)62)))) { goto IL_0594; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_226 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_227 = L_226->___chars_0; int32_t L_228 = V_17; NullCheck(L_227); int32_t L_229 = L_228; uint16_t L_230 = (uint16_t)(L_227)->GetAt(static_cast(L_229)); if ((((int32_t)L_230) == ((int32_t)((int32_t)47)))) { goto IL_0594; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_231 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_232 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_233 = L_232->___chars_0; int32_t L_234 = V_17; NullCheck(L_233); int32_t L_235 = L_234; uint16_t L_236 = (uint16_t)(L_233)->GetAt(static_cast(L_235)); bool L_237; L_237 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_231, L_236, NULL); if (!L_237) { goto IL_05b1; } } IL_0594: { int32_t L_238 = __this->___incReadDepth_52; __this->___incReadDepth_52 = ((int32_t)il2cpp_codegen_add(L_238, 1)); __this->___incReadState_50 = 5; int32_t L_239 = V_17; V_3 = L_239; goto IL_0698; } IL_05b1: { int32_t L_240 = V_17; V_3 = L_240; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_241 = (&__this->___ps_6); int32_t L_242 = L_241->___charPos_1; V_2 = L_242; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_243 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_244 = L_243->___chars_0; V_7 = L_244; goto IL_01f2; } IL_05d2: { int32_t L_245 = __this->___incReadState_50; if ((!(((uint32_t)L_245) == ((uint32_t)5)))) { goto IL_060d; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_246 = (&__this->___ps_6); int32_t L_247 = L_246->___charsUsed_2; int32_t L_248 = V_3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_247, L_248))) < ((int32_t)2))) { goto IL_0691; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_249 = V_7; int32_t L_250 = V_3; NullCheck(L_249); int32_t L_251 = ((int32_t)il2cpp_codegen_add(L_250, 1)); uint16_t L_252 = (uint16_t)(L_249)->GetAt(static_cast(L_251)); if ((!(((uint32_t)L_252) == ((uint32_t)((int32_t)62))))) { goto IL_060d; } } { __this->___incReadState_50 = 0; int32_t L_253 = __this->___incReadDepth_52; __this->___incReadDepth_52 = ((int32_t)il2cpp_codegen_subtract(L_253, 1)); } IL_060d: { int32_t L_254 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_254, 1)); goto IL_01f2; } IL_0616: { int32_t L_255 = __this->___incReadState_50; if ((!(((uint32_t)L_255) == ((uint32_t)5)))) { goto IL_0626; } } { __this->___incReadState_50 = 0; } IL_0626: { int32_t L_256 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_256, 1)); goto IL_01f2; } IL_062f: { int32_t L_257 = __this->___incReadState_50; V_9 = L_257; int32_t L_258 = V_9; if ((((int32_t)L_258) == ((int32_t)5))) { goto IL_065b; } } { int32_t L_259 = V_9; if ((!(((uint32_t)L_259) == ((uint32_t)6)))) { goto IL_0671; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_260 = V_7; int32_t L_261 = V_3; NullCheck(L_260); int32_t L_262 = L_261; uint16_t L_263 = (uint16_t)(L_260)->GetAt(static_cast(L_262)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_264 = __this->___curNode_11; NullCheck(L_264); Il2CppChar L_265 = L_264->___quoteChar_12; if ((!(((uint32_t)L_263) == ((uint32_t)L_265)))) { goto IL_0671; } } { __this->___incReadState_50 = 5; goto IL_0671; } IL_065b: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_266 = __this->___curNode_11; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_267 = V_7; int32_t L_268 = V_3; NullCheck(L_267); int32_t L_269 = L_268; uint16_t L_270 = (uint16_t)(L_267)->GetAt(static_cast(L_269)); NullCheck(L_266); L_266->___quoteChar_12 = L_270; __this->___incReadState_50 = 6; } IL_0671: { int32_t L_271 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_271, 1)); goto IL_01f2; } IL_067a: { int32_t L_272 = V_3; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_273 = (&__this->___ps_6); int32_t L_274 = L_273->___charsUsed_2; if ((((int32_t)L_272) == ((int32_t)L_274))) { goto IL_0691; } } { int32_t L_275 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_275, 1)); goto IL_01f2; } IL_0691: { __this->___incReadState_50 = 7; } IL_0698: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_276 = (&__this->___ps_6); int32_t L_277 = V_3; L_276->___charPos_1 = L_277; } IL_06a4: { int32_t L_278 = V_3; int32_t L_279 = V_2; V_8 = ((int32_t)il2cpp_codegen_subtract(L_278, L_279)); int32_t L_280 = V_8; if ((((int32_t)L_280) <= ((int32_t)0))) { goto IL_00bb; } } try {// begin try (depth: 1) IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* L_281 = __this->___incReadDecoder_49; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_282 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_283 = L_282->___chars_0; int32_t L_284 = V_2; int32_t L_285 = V_8; NullCheck(L_281); int32_t L_286; L_286 = VirtualFuncInvoker3< int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Xml.IncrementalReadDecoder::Decode(System.Char[],System.Int32,System.Int32) */, L_281, L_283, L_284, L_285); V_18 = L_286; goto IL_06f3; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_06ce; } throw e; } CATCH_06ce: {// begin catch(System.Xml.XmlException) V_19 = ((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_287 = V_19; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_288 = (&__this->___incReadLineInfo_51); int32_t L_289 = L_288->___lineNo_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_290 = (&__this->___incReadLineInfo_51); int32_t L_291 = L_290->___linePos_1; XmlTextReaderImpl_ReThrow_m58456B276A63FC28D06E961818452191F19A7502(__this, L_287, L_289, L_291, NULL); V_6 = 0; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_072c; }// end catch (depth: 1) IL_06f3: { int32_t L_292 = V_0; int32_t L_293 = V_18; V_0 = ((int32_t)il2cpp_codegen_add(L_292, L_293)); IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* L_294 = __this->___incReadDecoder_49; NullCheck(L_294); bool L_295; L_295 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.IncrementalReadDecoder::get_IsFull() */, L_294); if (!L_295) { goto IL_00bb; } } { int32_t L_296 = V_2; int32_t L_297 = V_18; __this->___incReadLeftStartPos_53 = ((int32_t)il2cpp_codegen_add(L_296, L_297)); int32_t L_298 = V_3; __this->___incReadLeftEndPos_54 = L_298; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_299 = (&__this->___incReadLineInfo_51); int32_t* L_300 = (&L_299->___linePos_1); int32_t* L_301 = L_300; int32_t L_302 = *((int32_t*)L_301); int32_t L_303 = V_18; *((int32_t*)L_301) = (int32_t)((int32_t)il2cpp_codegen_add(L_302, L_303)); int32_t L_304 = V_0; return L_304; } IL_072c: { int32_t L_305 = V_6; return L_305; } } // System.Void System.Xml.XmlTextReaderImpl::FinishIncrementalRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_FinishIncrementalRead_mE29D16A2012D05CC914D1E1E7A5E4C4F70D87FCB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* L_0 = (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86*)il2cpp_codegen_object_new(IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86_il2cpp_TypeInfo_var); NullCheck(L_0); IncrementalReadDummyDecoder__ctor_m45F0FCE3E794783ED3EB1C279BE4C655FF8E2EE6(L_0, NULL); __this->___incReadDecoder_49 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___incReadDecoder_49), (void*)L_0); int32_t L_1; L_1 = XmlTextReaderImpl_IncrementalRead_m856D6F97D4CF43CFE3E229178B1A98F34517D7F3(__this, NULL); __this->___incReadDecoder_49 = (IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___incReadDecoder_49), (void*)(IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B*)NULL); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseFragmentAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseFragmentAttribute_m7F13ECEA0620B822BE43B027B9AFA45864D2E10F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; if (L_1) { goto IL_003b; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = __this->___curNode_11; NullCheck(L_2); L_2->___type_1 = 2; __this->___curAttrIndex_13 = 0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_3 = (&__this->___ps_6); int32_t L_4 = L_3->___charPos_1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = __this->___curNode_11; XmlTextReaderImpl_ParseAttributeValueSlow_mB3F79EF3FC4263EE0519A661137DD3AA5E8B9B7F(__this, L_4, ((int32_t)32), L_5, NULL); goto IL_0043; } IL_003b: { __this->___parsingFunction_7 = ((int32_t)22); } IL_0043: { bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, __this); if (!L_6) { goto IL_0055; } } { __this->___parsingFunction_7 = ((int32_t)15); return (bool)1; } IL_0055: { XmlTextReaderImpl_OnEof_m8F5DFF89DE3251F9CEFA219E6A1AB8D268191B36(__this, NULL); return (bool)0; } } // System.Boolean System.Xml.XmlTextReaderImpl::ParseAttributeValueChunk() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ParseAttributeValueChunk_mCE7E6C8D6F5D7D71C50A86E619E1678191ED184F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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*)&_stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613); s_Il2CppMethodInitialized = true; } CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; int32_t V_3 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0->___chars_0; V_0 = L_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charPos_1; V_1 = L_3; int32_t L_4 = __this->___index_12; int32_t L_5 = __this->___attrCount_14; int32_t L_6 = __this->___index_12; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7; L_7 = XmlTextReaderImpl_AddNode_mB0ECD9B7041F31D4BF9DD2D5E6675321739AEB67(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_4, L_5)), 1)), ((int32_t)il2cpp_codegen_add(L_6, 2)), NULL); __this->___curNode_11 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___curNode_11), (void*)L_7); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = __this->___curNode_11; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_9 = (&__this->___ps_6); int32_t L_10; L_10 = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(L_9, NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_11 = (&__this->___ps_6); int32_t L_12; L_12 = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(L_11, NULL); NullCheck(L_8); NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5(L_8, L_10, L_12, NULL); bool L_13 = __this->___emptyEntityInAttributeResolved_56; if (!L_13) { goto IL_0082; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_14 = __this->___curNode_11; String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_14); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_14, 3, L_15, NULL); __this->___emptyEntityInAttributeResolved_56 = (bool)0; return (bool)1; } IL_007e: { int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1)); } IL_0082: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_17 = (&__this->___xmlCharType_5); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = L_17->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = V_0; int32_t L_20 = V_1; NullCheck(L_19); int32_t L_21 = L_20; uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast(L_21)); NullCheck(L_18); uint16_t L_23 = L_22; uint8_t L_24 = (L_18)->GetAt(static_cast(L_23)); if (((int32_t)((int32_t)L_24&((int32_t)128)))) { goto IL_007e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = V_0; int32_t L_26 = V_1; NullCheck(L_25); int32_t L_27 = L_26; uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast(L_27)); V_2 = L_28; Il2CppChar L_29 = V_2; if ((!(((uint32_t)L_29) <= ((uint32_t)((int32_t)38))))) { goto IL_00ce; } } { Il2CppChar L_30 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_30, ((int32_t)9)))) { case 0: { goto IL_00e8; } case 1: { goto IL_00e8; } case 2: { goto IL_021f; } case 3: { goto IL_021f; } case 4: { goto IL_00e2; } } } { Il2CppChar L_31 = V_2; if ((((int32_t)L_31) == ((int32_t)((int32_t)34)))) { goto IL_00fb; } } { Il2CppChar L_32 = V_2; if ((((int32_t)L_32) == ((int32_t)((int32_t)38)))) { goto IL_011a; } } { goto IL_021f; } IL_00ce: { Il2CppChar L_33 = V_2; if ((((int32_t)L_33) == ((int32_t)((int32_t)39)))) { goto IL_00fb; } } { Il2CppChar L_34 = V_2; if ((((int32_t)L_34) == ((int32_t)((int32_t)60)))) { goto IL_0101; } } { Il2CppChar L_35 = V_2; if ((((int32_t)L_35) == ((int32_t)((int32_t)62)))) { goto IL_00fb; } } { goto IL_021f; } IL_00e2: { int32_t L_36 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_36, 1)); goto IL_0082; } IL_00e8: { bool L_37 = __this->___normalize_24; if (!L_37) { goto IL_00f5; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = V_0; int32_t L_39 = V_1; NullCheck(L_38); (L_38)->SetAt(static_cast(L_39), (Il2CppChar)((int32_t)32)); } IL_00f5: { int32_t L_40 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_40, 1)); goto IL_0082; } IL_00fb: { int32_t L_41 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_41, 1)); goto IL_0082; } IL_0101: { int32_t L_42 = V_1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_43; L_43 = XmlException_BuildCharExceptionArgs_m85E22B1AE112B5BB1253D33A24F137F73240C556(((int32_t)60), 0, NULL); XmlTextReaderImpl_Throw_mE3F5BDAAD3E82F61388BFC116E64FC1309230703(__this, L_42, _stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613, L_43, NULL); goto IL_0271; } IL_011a: { int32_t L_44 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_45 = (&__this->___ps_6); int32_t L_46 = L_45->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_44, L_46))) <= ((int32_t)0))) { goto IL_014f; } } { StringBuilder_t* L_47 = __this->___stringBuilder_61; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_48 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_49 = (&__this->___ps_6); int32_t L_50 = L_49->___charPos_1; int32_t L_51 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_52 = (&__this->___ps_6); int32_t L_53 = L_52->___charPos_1; NullCheck(L_47); StringBuilder_t* L_54; L_54 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_47, L_48, L_50, ((int32_t)il2cpp_codegen_subtract(L_51, L_53)), NULL); } IL_014f: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_55 = (&__this->___ps_6); int32_t L_56 = V_1; L_55->___charPos_1 = L_56; int32_t L_57; L_57 = XmlTextReaderImpl_HandleEntityReference_mCDF9E4056C8508F64B66ABE7063D04D48DA64CA5(__this, (bool)1, 2, (&V_1), NULL); V_3 = L_57; int32_t L_58 = V_3; if ((!(((uint32_t)L_58) > ((uint32_t)2)))) { goto IL_0173; } } { int32_t L_59 = V_3; if ((((int32_t)L_59) == ((int32_t)6))) { goto IL_01c5; } } { goto IL_020e; } IL_0173: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_60 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_61 = L_60->___chars_0; V_0 = L_61; bool L_62 = __this->___normalize_24; if (!L_62) { goto IL_020e; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_63 = (&__this->___xmlCharType_5); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_65 = (&__this->___ps_6); int32_t L_66 = L_65->___charPos_1; NullCheck(L_64); int32_t L_67 = L_66; uint16_t L_68 = (uint16_t)(L_64)->GetAt(static_cast(L_67)); bool L_69; L_69 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_63, L_68, NULL); if (!L_69) { goto IL_020e; } } { int32_t L_70 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_71 = (&__this->___ps_6); int32_t L_72 = L_71->___charPos_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_70, L_72))) == ((uint32_t)1)))) { goto IL_020e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_73 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_74 = (&__this->___ps_6); int32_t L_75 = L_74->___charPos_1; NullCheck(L_73); (L_73)->SetAt(static_cast(L_75), (Il2CppChar)((int32_t)32)); goto IL_020e; } IL_01c5: { StringBuilder_t* L_76 = __this->___stringBuilder_61; NullCheck(L_76); int32_t L_77; L_77 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_76, NULL); if (L_77) { goto IL_02f6; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_78 = __this->___curNode_11; NullCheck(L_78); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_79 = (&L_78->___lineInfo_10); int32_t* L_80 = (&L_79->___linePos_1); int32_t* L_81 = L_80; int32_t L_82 = *((int32_t*)L_81); *((int32_t*)L_81) = (int32_t)((int32_t)il2cpp_codegen_add(L_82, 1)); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_83 = (&__this->___ps_6); int32_t* L_84 = (&L_83->___charPos_1); int32_t* L_85 = L_84; int32_t L_86 = *((int32_t*)L_85); *((int32_t*)L_85) = (int32_t)((int32_t)il2cpp_codegen_add(L_86, 1)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_87 = __this->___curNode_11; String_t* L_88; L_88 = XmlTextReaderImpl_ParseEntityName_m3E547DE2000F6AB699FF1052E470BDBEFAB11D11(__this, NULL); NullCheck(L_87); NodeData_SetNamedNode_mB4B118182B66F9E24611C31A074538E177DDDA73(L_87, 5, L_88, NULL); return (bool)1; } IL_020e: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_89 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_90 = L_89->___chars_0; V_0 = L_90; goto IL_0082; } IL_021f: { int32_t L_91 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_92 = (&__this->___ps_6); int32_t L_93 = L_92->___charsUsed_2; if ((((int32_t)L_91) == ((int32_t)L_93))) { goto IL_0271; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_94 = V_0; int32_t L_95 = V_1; NullCheck(L_94); int32_t L_96 = L_95; uint16_t L_97 = (uint16_t)(L_94)->GetAt(static_cast(L_96)); bool L_98; L_98 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_97, NULL); if (!L_98) { goto IL_025e; } } { int32_t L_99 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_100 = (&__this->___ps_6); int32_t L_101 = L_100->___charsUsed_2; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_99, 1))) == ((int32_t)L_101))) { goto IL_0271; } } { int32_t L_102 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_102, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_103 = V_0; int32_t L_104 = V_1; NullCheck(L_103); int32_t L_105 = L_104; uint16_t L_106 = (uint16_t)(L_103)->GetAt(static_cast(L_105)); bool L_107; L_107 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_106, NULL); if (!L_107) { goto IL_025e; } } { int32_t L_108 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_108, 1)); goto IL_0082; } IL_025e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_109 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_110 = (&__this->___ps_6); int32_t L_111 = L_110->___charsUsed_2; int32_t L_112 = V_1; XmlTextReaderImpl_ThrowInvalidChar_mF8B2A2445E4CF8016C0A7256F6762D3CA4B0DCC2(__this, L_109, L_111, L_112, NULL); } IL_0271: { int32_t L_113 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_114 = (&__this->___ps_6); int32_t L_115 = L_114->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_113, L_115))) <= ((int32_t)0))) { goto IL_02b2; } } { StringBuilder_t* L_116 = __this->___stringBuilder_61; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_117 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_118 = (&__this->___ps_6); int32_t L_119 = L_118->___charPos_1; int32_t L_120 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_121 = (&__this->___ps_6); int32_t L_122 = L_121->___charPos_1; NullCheck(L_116); StringBuilder_t* L_123; L_123 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_116, L_117, L_119, ((int32_t)il2cpp_codegen_subtract(L_120, L_122)), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_124 = (&__this->___ps_6); int32_t L_125 = V_1; L_124->___charPos_1 = L_125; } IL_02b2: { int32_t L_126; L_126 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_126) { goto IL_02d9; } } { StringBuilder_t* L_127 = __this->___stringBuilder_61; NullCheck(L_127); int32_t L_128; L_128 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_127, NULL); if ((((int32_t)L_128) > ((int32_t)0))) { goto IL_02f6; } } { bool L_129; L_129 = XmlTextReaderImpl_HandleEntityEnd_m9C73CE6745616AFF9B79D7C070AB3D298F324AA6(__this, (bool)0, NULL); if (!L_129) { goto IL_02d9; } } { XmlTextReaderImpl_SetupEndEntityNodeInAttribute_m4ED5A78E4DAC8712A7C8A67774B353100E62DDEF(__this, NULL); return (bool)1; } IL_02d9: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_130 = (&__this->___ps_6); int32_t L_131 = L_130->___charPos_1; V_1 = L_131; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_132 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_133 = L_132->___chars_0; V_0 = L_133; goto IL_0082; } IL_02f6: { int32_t L_134 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_135 = (&__this->___ps_6); int32_t L_136 = L_135->___charPos_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_134, L_136))) <= ((int32_t)0))) { goto IL_0337; } } { StringBuilder_t* L_137 = __this->___stringBuilder_61; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_138 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_139 = (&__this->___ps_6); int32_t L_140 = L_139->___charPos_1; int32_t L_141 = V_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_142 = (&__this->___ps_6); int32_t L_143 = L_142->___charPos_1; NullCheck(L_137); StringBuilder_t* L_144; L_144 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_137, L_138, L_140, ((int32_t)il2cpp_codegen_subtract(L_141, L_143)), NULL); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_145 = (&__this->___ps_6); int32_t L_146 = V_1; L_145->___charPos_1 = L_146; } IL_0337: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_147 = __this->___curNode_11; StringBuilder_t* L_148 = __this->___stringBuilder_61; NullCheck(L_148); String_t* L_149; L_149 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_148); NullCheck(L_147); NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25(L_147, 3, L_149, NULL); StringBuilder_t* L_150 = __this->___stringBuilder_61; NullCheck(L_150); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_150, 0, NULL); return (bool)1; } } // System.Void System.Xml.XmlTextReaderImpl::ParseXmlDeclarationFragment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseXmlDeclarationFragment_m78450AE9989B2043AD0068D6200CAD504B12D223 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) bool L_0; L_0 = XmlTextReaderImpl_ParseXmlDeclaration_mE57790EE79B349C9AA99472BA1B5DE58604660EA(__this, (bool)0, NULL); goto IL_0022; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000a; } throw e; } CATCH_000a: {// begin catch(System.Xml.XmlException) V_0 = ((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_1 = V_0; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline(L_2, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_4 = V_0; NullCheck(L_4); int32_t L_5; L_5 = XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline(L_4, NULL); XmlTextReaderImpl_ReThrow_m58456B276A63FC28D06E961818452191F19A7502(__this, L_1, L_3, ((int32_t)il2cpp_codegen_subtract(L_5, 6)), NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0022; }// end catch (depth: 1) IL_0022: { return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_mB5A9F72CA48F0339C24F4B5BCD46339EEDF8CAAF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___expectedToken1, const RuntimeMethod* method) { { int32_t L_0 = ___pos0; String_t* L_1 = ___expectedToken1; XmlTextReaderImpl_ThrowUnexpectedToken_m3F9B9CE4DB4B31F87C9F8F9BBB145F68191417E3(__this, L_0, L_1, (String_t*)NULL, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_m780382C6FFE6D71D6618E4EAFFD2272D86C042C2 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___expectedToken10, const RuntimeMethod* method) { { String_t* L_0 = ___expectedToken10; XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905(__this, L_0, (String_t*)NULL, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_m3F9B9CE4DB4B31F87C9F8F9BBB145F68191417E3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, String_t* ___expectedToken11, String_t* ___expectedToken22, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = ___pos0; L_0->___charPos_1 = L_1; String_t* L_2 = ___expectedToken11; String_t* L_3 = ___expectedToken22; XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905(__this, L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowUnexpectedToken(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowUnexpectedToken_mC7F93629834C75A4584F26184705A19B26252905 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___expectedToken10, String_t* ___expectedToken21, 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*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral168C49673280639EC773D92BF193FBACAED8BF52); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7A4DCEE2BCE29D8E3625DA7D1C87881873A907C); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0; L_0 = XmlTextReaderImpl_ParseUnexpectedToken_m8670F7F0B839943AE0C7FD4A43B451A56BB719CE(__this, NULL); V_0 = L_0; String_t* L_1 = V_0; if (L_1) { goto IL_0015; } } { XmlTextReaderImpl_Throw_mBF5380F08BBE97BDF444BB37A8627EB6125EB3BB(__this, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); } IL_0015: { String_t* L_2 = ___expectedToken21; if (!L_2) { goto IL_0036; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)3); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3; String_t* L_5 = V_0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast(0), (String_t*)L_5); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_4; String_t* L_7 = ___expectedToken10; NullCheck(L_6); ArrayElementTypeCheck (L_6, L_7); (L_6)->SetAt(static_cast(1), (String_t*)L_7); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_6; String_t* L_9 = ___expectedToken21; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_9); (L_8)->SetAt(static_cast(2), (String_t*)L_9); XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274(__this, _stringLiteral168C49673280639EC773D92BF193FBACAED8BF52, L_8, NULL); return; } IL_0036: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10; String_t* L_12 = V_0; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast(0), (String_t*)L_12); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_11; String_t* L_14 = ___expectedToken10; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(1), (String_t*)L_14); XmlTextReaderImpl_Throw_m0BB9269CFC5AD410929F37366F8458BB19168274(__this, _stringLiteralC7A4DCEE2BCE29D8E3625DA7D1C87881873A907C, L_13, NULL); return; } } // System.String System.Xml.XmlTextReaderImpl::ParseUnexpectedToken(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ParseUnexpectedToken_m5D57668EDBBF58EA0914EEFE32EDC62F2DCF321C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) { { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = ___pos0; L_0->___charPos_1 = L_1; String_t* L_2; L_2 = XmlTextReaderImpl_ParseUnexpectedToken_m8670F7F0B839943AE0C7FD4A43B451A56BB719CE(__this, NULL); return L_2; } } // System.String System.Xml.XmlTextReaderImpl::ParseUnexpectedToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_ParseUnexpectedToken_m8670F7F0B839943AE0C7FD4A43B451A56BB719CE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_0 = (&__this->___ps_6); int32_t L_1 = L_0->___charPos_1; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charsUsed_2; if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_001a; } } { return (String_t*)NULL; } IL_001a: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_4 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_5 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = L_5->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_7 = (&__this->___ps_6); int32_t L_8 = L_7->___charPos_1; NullCheck(L_6); int32_t L_9 = L_8; uint16_t L_10 = (uint16_t)(L_6)->GetAt(static_cast(L_9)); bool L_11; L_11 = XmlCharType_IsNCNameSingleChar_mAE9940C767975DB6F8EA438AAE5F7DFC7666DB54(L_4, L_10, NULL); if (!L_11) { goto IL_0095; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); int32_t L_13 = L_12->___charPos_1; V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1)); goto IL_0052; } IL_004e: { int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1)); } IL_0052: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_15 = (&__this->___xmlCharType_5); ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_16 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = L_16->___chars_0; int32_t L_18 = V_0; NullCheck(L_17); int32_t L_19 = L_18; uint16_t L_20 = (uint16_t)(L_17)->GetAt(static_cast(L_19)); bool L_21; L_21 = XmlCharType_IsNCNameSingleChar_mAE9940C767975DB6F8EA438AAE5F7DFC7666DB54(L_15, L_20, NULL); if (L_21) { goto IL_004e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_22 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = L_22->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_24 = (&__this->___ps_6); int32_t L_25 = L_24->___charPos_1; int32_t L_26 = V_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_27 = (&__this->___ps_6); int32_t L_28 = L_27->___charPos_1; String_t* L_29; L_29 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_23, L_25, ((int32_t)il2cpp_codegen_subtract(L_26, L_28)), NULL); return L_29; } IL_0095: { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_30 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = L_30->___chars_0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_32 = (&__this->___ps_6); int32_t L_33 = L_32->___charPos_1; String_t* L_34; L_34 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_31, L_33, 1, NULL); return L_34; } } // System.Void System.Xml.XmlTextReaderImpl::ThrowExpectingWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ThrowExpectingWhitespace_m971DF46CF8EDD3C04B7EAC72893C1EBE43E4884B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = ___pos0; String_t* L_1; L_1 = XmlTextReaderImpl_ParseUnexpectedToken_m5D57668EDBBF58EA0914EEFE32EDC62F2DCF321C(__this, L_0, NULL); V_0 = L_1; String_t* L_2 = V_0; if (L_2) { goto IL_0018; } } { int32_t L_3 = ___pos0; XmlTextReaderImpl_Throw_m6B29826BD40C8EA74E130EB649AAE48B51EE4AB2(__this, L_3, _stringLiteral13FB70ADE9D0DE3E48F4543466E8766DDC3A72B8, NULL); return; } IL_0018: { int32_t L_4 = ___pos0; String_t* L_5 = V_0; XmlTextReaderImpl_Throw_mBBE5AD6F0A114F83311BA12189D3E4DE4F874397(__this, L_4, _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36, L_5, NULL); return; } } // System.Int32 System.Xml.XmlTextReaderImpl::GetIndexOfAttributeWithoutPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetIndexOfAttributeWithoutPrefix_mE28A59CD28367148597BB65AB4C1EBA22DBE8F9A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_20; String_t* L_1 = ___name0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_0, L_1); ___name0 = L_2; String_t* L_3 = ___name0; if (L_3) { goto IL_0013; } } { return (-1); } IL_0013: { int32_t L_4 = __this->___index_12; V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1)); goto IL_004d; } IL_001e: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_5 = __this->___nodes_10; int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = (L_5)->GetAt(static_cast(L_7)); NullCheck(L_8); String_t* L_9 = L_8->___localName_2; String_t* L_10 = ___name0; bool L_11; L_11 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_9, L_10, NULL); if (!L_11) { goto IL_0049; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_12 = __this->___nodes_10; int32_t L_13 = V_0; NullCheck(L_12); int32_t L_14 = L_13; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = (L_12)->GetAt(static_cast(L_14)); NullCheck(L_15); String_t* L_16 = L_15->___prefix_3; NullCheck(L_16); int32_t L_17; L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL); if (L_17) { goto IL_0049; } } { int32_t L_18 = V_0; return L_18; } IL_0049: { int32_t L_19 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_19, 1)); } IL_004d: { int32_t L_20 = V_0; int32_t L_21 = __this->___index_12; int32_t L_22 = __this->___attrCount_14; if ((((int32_t)L_20) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_21, L_22)), 1))))) { goto IL_001e; } } { return (-1); } } // System.Int32 System.Xml.XmlTextReaderImpl::GetIndexOfAttributeWithPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_GetIndexOfAttributeWithPrefix_mEF35AFBF456D1F9EF89A3E72121686EF60C03C68 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___name0, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_20; String_t* L_1 = ___name0; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_0, L_1); ___name0 = L_2; String_t* L_3 = ___name0; if (L_3) { goto IL_0013; } } { return (-1); } IL_0013: { int32_t L_4 = __this->___index_12; V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1)); goto IL_003f; } IL_001e: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_5 = __this->___nodes_10; int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_8 = (L_5)->GetAt(static_cast(L_7)); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9 = __this->___nameTable_20; NullCheck(L_8); String_t* L_10; L_10 = NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527(L_8, L_9, NULL); String_t* L_11 = ___name0; bool L_12; L_12 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_10, L_11, NULL); if (!L_12) { goto IL_003b; } } { int32_t L_13 = V_0; return L_13; } IL_003b: { int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1)); } IL_003f: { int32_t L_15 = V_0; int32_t L_16 = __this->___index_12; int32_t L_17 = __this->___attrCount_14; if ((((int32_t)L_15) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_16, L_17)), 1))))) { goto IL_001e; } } { return (-1); } } // System.Boolean System.Xml.XmlTextReaderImpl::ZeroEndingStream(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_ZeroEndingStream_m24AA1FACA8FA96D3A362C20BF6A8D49A0A9DC1C4 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___pos0, const RuntimeMethod* method) { { bool L_0 = __this->___v1Compat_37; if (!L_0) { goto IL_004e; } } { int32_t L_1 = ___pos0; ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_2 = (&__this->___ps_6); int32_t L_3 = L_2->___charsUsed_2; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, 1)))))) { goto IL_004e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_4 = (&__this->___ps_6); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4->___chars_0; int32_t L_6 = ___pos0; NullCheck(L_5); int32_t L_7 = L_6; uint16_t L_8 = (uint16_t)(L_5)->GetAt(static_cast(L_7)); if (L_8) { goto IL_004e; } } { int32_t L_9; L_9 = XmlTextReaderImpl_ReadData_m6D24F83800910351196F6ABD57CA62C41BBA7403(__this, NULL); if (L_9) { goto IL_004e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_10 = (&__this->___ps_6); bool L_11 = L_10->___isStreamEof_16; if (!L_11) { goto IL_004e; } } { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* L_12 = (&__this->___ps_6); int32_t* L_13 = (&L_12->___charsUsed_2); int32_t* L_14 = L_13; int32_t L_15 = *((int32_t*)L_14); *((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_15, 1)); return (bool)1; } IL_004e: { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::ParseDtdFromParserContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ParseDtdFromParserContext_mCDAFBB67C6485B9F431088A095F8DEC3A3224148 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0; L_0 = DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B(NULL); V_0 = L_0; RuntimeObject* L_1 = V_0; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_2 = __this->___fragmentParserContext_47; NullCheck(L_2); String_t* L_3; L_3 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_2, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_4 = __this->___fragmentParserContext_47; NullCheck(L_4); String_t* L_5; L_5 = XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline(L_4, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_6 = __this->___fragmentParserContext_47; NullCheck(L_6); String_t* L_7; L_7 = XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline(L_6, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = __this->___fragmentParserContext_47; NullCheck(L_8); String_t* L_9; L_9 = XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline(L_8, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_10 = __this->___fragmentParserContext_47; NullCheck(L_10); String_t* L_11; L_11 = XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline(L_10, NULL); DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_12 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); NullCheck(L_12); DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_12, __this, NULL); NullCheck(L_1); RuntimeObject* L_13; L_13 = InterfaceFuncInvoker6< RuntimeObject*, String_t*, String_t*, String_t*, String_t*, String_t*, RuntimeObject* >::Invoke(1 /* System.Xml.IDtdInfo System.Xml.IDtdParser::ParseFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) */, IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var, L_1, L_3, L_5, L_7, L_9, L_11, L_12); __this->___dtdInfo_45 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___dtdInfo_45), (void*)L_13); bool L_14 = __this->___validatingReaderCompatFlag_59; if (L_14) { goto IL_005f; } } { bool L_15 = __this->___v1Compat_37; if (L_15) { goto IL_0080; } } IL_005f: { RuntimeObject* L_16 = __this->___dtdInfo_45; NullCheck(L_16); bool L_17; L_17 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.IDtdInfo::get_HasDefaultAttributes() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_16); if (L_17) { goto IL_0079; } } { RuntimeObject* L_18 = __this->___dtdInfo_45; NullCheck(L_18); bool L_19; L_19 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.Xml.IDtdInfo::get_HasNonCDataAttributes() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_18); if (!L_19) { goto IL_0080; } } IL_0079: { __this->___addDefaultAttributesAndNormalize_60 = (bool)1; } IL_0080: { return; } } // System.Boolean System.Xml.XmlTextReaderImpl::MoveToNextContentNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_MoveToNextContentNode_m169F81C680109280A2F1E6DBC5D543A94315D772 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___moveIfOnContentNode0, const RuntimeMethod* method) { int32_t V_0 = 0; IL_0000: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); int32_t L_1 = L_0->___type_1; V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 2))) { case 0: { goto IL_0052; } case 1: { goto IL_0057; } case 2: { goto IL_0057; } case 3: { goto IL_005c; } case 4: { goto IL_0069; } case 5: { goto IL_006b; } case 6: { goto IL_006b; } case 7: { goto IL_0069; } case 8: { goto IL_0069; } case 9: { goto IL_0069; } case 10: { goto IL_0069; } case 11: { goto IL_0057; } case 12: { goto IL_0057; } case 13: { goto IL_0069; } case 14: { goto IL_006b; } } } { goto IL_0069; } IL_0052: { bool L_3 = ___moveIfOnContentNode0; return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_0057: { bool L_4 = ___moveIfOnContentNode0; if (L_4) { goto IL_006b; } } { return (bool)1; } IL_005c: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___outerReader_75; NullCheck(L_5); VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_5); goto IL_006b; } IL_0069: { return (bool)0; } IL_006b: { ___moveIfOnContentNode0 = (bool)0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___outerReader_75; NullCheck(L_6); bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_6); if (L_7) { goto IL_0000; } } { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl::SetupFromParserContext(System.Xml.XmlParserContext,System.Xml.XmlReaderSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetupFromParserContext_mF77555EDF43C9D83D93F376F3A446C4824C1C2FA (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context0, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___settings1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_0 = NULL; { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = ___settings1; NullCheck(L_0); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1; L_1 = XmlReaderSettings_get_NameTable_mAF10C63E556531DDED4ABA060B60FA89D0D263BE_inline(L_0, NULL); V_0 = L_1; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = V_0; __this->___nameTableFromSettings_21 = (bool)((!(((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3 = ___context0; NullCheck(L_3); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4; L_4 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_3, NULL); if (!L_4) { goto IL_006a; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = V_0; if (!L_5) { goto IL_0035; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = V_0; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_7 = ___context0; NullCheck(L_7); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_8; L_8 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_7, NULL); NullCheck(L_8); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9; L_9 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(8 /* System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::get_NameTable() */, L_8); if ((((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_6) == ((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_9))) { goto IL_0035; } } { XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_10 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_10); XmlException__ctor_m39D4A09CD4A3351C21D85A89AAE43ECAD0E910F4(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral08225942B0A6237A26F3F6162356652870EA9AD9)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_SetupFromParserContext_mF77555EDF43C9D83D93F376F3A446C4824C1C2FA_RuntimeMethod_var))); } IL_0035: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_11 = ___context0; NullCheck(L_11); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_12; L_12 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_11, NULL); __this->___namespaceManager_38 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_12); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_13 = __this->___xmlContext_40; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_14 = __this->___namespaceManager_38; String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_14); String_t* L_16; L_16 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_14, L_15); NullCheck(L_13); L_13->___defaultNamespace_2 = L_16; Il2CppCodeGenWriteBarrier((void**)(&L_13->___defaultNamespace_2), (void*)L_16); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_17 = __this->___namespaceManager_38; NullCheck(L_17); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18; L_18 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(8 /* System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::get_NameTable() */, L_17); V_0 = L_18; goto IL_00a0; } IL_006a: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_19 = ___context0; NullCheck(L_19); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_20; L_20 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_19, NULL); if (!L_20) { goto IL_0097; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_21 = V_0; if (!L_21) { goto IL_008e; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22 = V_0; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_23 = ___context0; NullCheck(L_23); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_24; L_24 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_23, NULL); if ((((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_22) == ((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_24))) { goto IL_008e; } } { String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_26 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_26); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral08225942B0A6237A26F3F6162356652870EA9AD9)), L_25, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextReaderImpl_SetupFromParserContext_mF77555EDF43C9D83D93F376F3A446C4824C1C2FA_RuntimeMethod_var))); } IL_008e: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_27 = ___context0; NullCheck(L_27); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_28; L_28 = XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline(L_27, NULL); V_0 = L_28; goto IL_00a0; } IL_0097: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_29 = V_0; if (L_29) { goto IL_00a0; } } { NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_30 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_30); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_30, NULL); V_0 = L_30; } IL_00a0: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_31 = V_0; __this->___nameTable_20 = L_31; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_20), (void*)L_31); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_32 = __this->___namespaceManager_38; if (L_32) { goto IL_00bb; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_33 = V_0; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_34 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_34); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_34, L_33, NULL); __this->___namespaceManager_38 = L_34; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceManager_38), (void*)L_34); } IL_00bb: { XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_35 = __this->___xmlContext_40; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_36 = ___context0; NullCheck(L_36); int32_t L_37; L_37 = XmlParserContext_get_XmlSpace_m52BE2428971EFFCBE9922F1B37FEEE9940AF1891_inline(L_36, NULL); NullCheck(L_35); L_35->___xmlSpace_0 = L_37; XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_38 = __this->___xmlContext_40; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_39 = ___context0; NullCheck(L_39); String_t* L_40; L_40 = XmlParserContext_get_XmlLang_m15AAD2E5AA247235638A436E68596B9A89BFE443_inline(L_39, NULL); NullCheck(L_38); L_38->___xmlLang_1 = L_40; Il2CppCodeGenWriteBarrier((void**)(&L_38->___xmlLang_1), (void*)L_40); return; } } // System.Xml.IDtdInfo System.Xml.XmlTextReaderImpl::get_DtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdInfo_mB63678CA13C1DDADDBA91DB7EB2BFB29240A94A1 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___dtdInfo_45; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl::SetDtdInfo(System.Xml.IDtdInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___newDtdInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___newDtdInfo0; __this->___dtdInfo_45 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___dtdInfo_45), (void*)L_0); RuntimeObject* L_1 = __this->___dtdInfo_45; if (!L_1) { goto IL_0040; } } { bool L_2 = __this->___validatingReaderCompatFlag_59; if (L_2) { goto IL_001f; } } { bool L_3 = __this->___v1Compat_37; if (L_3) { goto IL_0040; } } IL_001f: { RuntimeObject* L_4 = __this->___dtdInfo_45; NullCheck(L_4); bool L_5; L_5 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.IDtdInfo::get_HasDefaultAttributes() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_4); if (L_5) { goto IL_0039; } } { RuntimeObject* L_6 = __this->___dtdInfo_45; NullCheck(L_6); bool L_7; L_7 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.Xml.IDtdInfo::get_HasNonCDataAttributes() */, IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8_il2cpp_TypeInfo_var, L_6); if (!L_7) { goto IL_0040; } } IL_0039: { __this->___addDefaultAttributesAndNormalize_60 = (bool)1; } IL_0040: { return; } } // System.Void System.Xml.XmlTextReaderImpl::set_ValidationEventHandling(System.Xml.IValidationEventHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_ValidationEventHandling_mF8A66D6BE2B822997F486F4931B151B667863E59 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; __this->___validationEventHandling_57 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___validationEventHandling_57), (void*)L_0); return; } } // System.Void System.Xml.XmlTextReaderImpl::set_OnDefaultAttributeUse(System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OnDefaultAttributeUse_m519352D6E61D34534B6790ECB3180B4B050B92FB (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* ___value0, const RuntimeMethod* method) { { OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* L_0 = ___value0; __this->___onDefaultAttributeUse_58 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___onDefaultAttributeUse_58), (void*)L_0); return; } } // System.Void System.Xml.XmlTextReaderImpl::set_XmlValidatingReaderCompatibilityMode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEE3B2EB07697A8538A5981905EA8D1A1753B51D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } { bool L_0 = ___value0; __this->___validatingReaderCompatFlag_59 = L_0; bool L_1 = ___value0; if (!L_1) { goto IL_003d; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = __this->___nameTable_20; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_2, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_4 = __this->___nameTable_20; 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); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = __this->___nameTable_20; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, _stringLiteralCEE3B2EB07697A8538A5981905EA8D1A1753B51D); } IL_003d: { return; } } // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::get_FragmentType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_FragmentType_m2A244AA6C26344D9FFD93C4431E5BB30846E3A10 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___fragmentType_46; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl::ChangeCurrentNodeType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ChangeCurrentNodeType_m29E4ADDA760615A747D04FDC8A5352F7A676C0E3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___newNodeType0, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; int32_t L_1 = ___newNodeType0; NullCheck(L_0); L_0->___type_1 = L_1; return; } } // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::GetResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlTextReaderImpl_GetResolver_m924CBFEF2845AFABF70D3E892450B7BA9C7659A0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0; L_0 = XmlTextReaderImpl_get_IsResolverNull_m6DC91F871E5F4B8694DDF8B312AC67DF1666EE0C(__this, NULL); if (!L_0) { goto IL_000a; } } { return (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL; } IL_000a: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = __this->___xmlResolver_22; return L_1; } } // System.Void System.Xml.XmlTextReaderImpl::set_InternalSchemaType(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_InternalSchemaType_m83D09B83500AB9C6EF14121ECDCD992347140B86 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; RuntimeObject* L_1 = ___value0; NullCheck(L_0); L_0->___schemaType_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&L_0->___schemaType_18), (void*)L_1); return; } } // System.Object System.Xml.XmlTextReaderImpl::get_InternalTypedValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_InternalTypedValue_mAC905D7C504F020F695087C8D0C675F100106900 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; NullCheck(L_0); RuntimeObject* L_1 = L_0->___typedValue_19; return L_1; } } // System.Void System.Xml.XmlTextReaderImpl::set_InternalTypedValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_InternalTypedValue_m395992CEA4999B2FA7370AD919D57A8F0A8B7662 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = __this->___curNode_11; RuntimeObject* L_1 = ___value0; NullCheck(L_0); L_0->___typedValue_19 = L_1; Il2CppCodeGenWriteBarrier((void**)(&L_0->___typedValue_19), (void*)L_1); return; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_StandAlone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_StandAlone_mA576162454EF6AB6B5B442B1AF0FF6375F52EF2D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___standalone_63; return L_0; } } // System.Xml.XmlNamespaceManager System.Xml.XmlTextReaderImpl::get_NamespaceManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlTextReaderImpl_get_NamespaceManager_mA1B0A84C1F6EF5E76532A2287CC4FEA231509F42 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_38; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::get_V1Compat() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_V1Compat_m27698868D378A1241DCAA4E22251E930806781C7 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___v1Compat_37; return L_0; } } // System.Boolean System.Xml.XmlTextReaderImpl::AddDefaultAttributeDtd(System.Xml.IDtdDefaultAttributeInfo,System.Boolean,System.Xml.XmlTextReaderImpl/NodeData[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_AddDefaultAttributeDtd_mF22FAABF13D4076D5A95FDCBD423732FFEEF434A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___defAttrInfo0, bool ___definedInDtd1, NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___nameSortedNodeData2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_2 = NULL; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL; int32_t V_4 = 0; { RuntimeObject* L_0 = ___defAttrInfo0; NullCheck(L_0); String_t* L_1; L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdAttributeInfo::get_Prefix() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_0); NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_0015; } } { __this->___attrNeedNamespaceLookup_17 = (bool)1; } IL_0015: { RuntimeObject* L_3 = ___defAttrInfo0; NullCheck(L_3); String_t* L_4; L_4 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdAttributeInfo::get_LocalName() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_3); V_0 = L_4; RuntimeObject* L_5 = ___defAttrInfo0; NullCheck(L_5); String_t* L_6; L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdAttributeInfo::get_Prefix() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_5); V_1 = L_6; NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_7 = ___nameSortedNodeData2; if (!L_7) { goto IL_0039; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_8 = ___nameSortedNodeData2; V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_8; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = V_3; RuntimeObject* L_10 = ___defAttrInfo0; il2cpp_codegen_runtime_class_init_inline(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); RuntimeObject* L_11; L_11 = DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_mF0B0C0F3D7173DBD9A59C94B5364AAF425F1D599_inline(NULL); int32_t L_12; L_12 = Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0(L_9, L_10, L_11, Array_BinarySearch_TisRuntimeObject_m55BF9789EED1C3D7BB8B814FC3D118744EE3BBF0_RuntimeMethod_var); if ((((int32_t)L_12) < ((int32_t)0))) { goto IL_0082; } } { return (bool)0; } IL_0039: { int32_t L_13 = __this->___index_12; V_4 = ((int32_t)il2cpp_codegen_add(L_13, 1)); goto IL_006f; } IL_0045: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_14 = __this->___nodes_10; int32_t L_15 = V_4; NullCheck(L_14); int32_t L_16 = L_15; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_17 = (L_14)->GetAt(static_cast(L_16)); NullCheck(L_17); String_t* L_18 = L_17->___localName_2; String_t* L_19 = V_0; if ((!(((RuntimeObject*)(String_t*)L_18) == ((RuntimeObject*)(String_t*)L_19)))) { goto IL_0069; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_20 = __this->___nodes_10; int32_t L_21 = V_4; NullCheck(L_20); int32_t L_22 = L_21; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_23 = (L_20)->GetAt(static_cast(L_22)); NullCheck(L_23); String_t* L_24 = L_23->___prefix_3; String_t* L_25 = V_1; if ((!(((RuntimeObject*)(String_t*)L_24) == ((RuntimeObject*)(String_t*)L_25)))) { goto IL_0069; } } { return (bool)0; } IL_0069: { int32_t L_26 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_26, 1)); } IL_006f: { int32_t L_27 = V_4; int32_t L_28 = __this->___index_12; int32_t L_29 = __this->___attrCount_14; if ((((int32_t)L_27) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_28, 1)), L_29))))) { goto IL_0045; } } IL_0082: { RuntimeObject* L_30 = ___defAttrInfo0; NullCheck(L_30); String_t* L_31; L_31 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdAttributeInfo::get_LocalName() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_30); RuntimeObject* L_32 = ___defAttrInfo0; NullCheck(L_32); String_t* L_33; L_33 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdAttributeInfo::get_Prefix() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_32); RuntimeObject* L_34 = ___defAttrInfo0; NullCheck(L_34); String_t* L_35; L_35 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdDefaultAttributeInfo::get_DefaultValueExpanded() */, IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var, L_34); RuntimeObject* L_36 = ___defAttrInfo0; NullCheck(L_36); int32_t L_37; L_37 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Xml.IDtdAttributeInfo::get_LineNumber() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_36); RuntimeObject* L_38 = ___defAttrInfo0; NullCheck(L_38); int32_t L_39; L_39 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 System.Xml.IDtdAttributeInfo::get_LinePosition() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_38); RuntimeObject* L_40 = ___defAttrInfo0; NullCheck(L_40); int32_t L_41; L_41 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Xml.IDtdDefaultAttributeInfo::get_ValueLineNumber() */, IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var, L_40); RuntimeObject* L_42 = ___defAttrInfo0; NullCheck(L_42); int32_t L_43; L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 System.Xml.IDtdDefaultAttributeInfo::get_ValueLinePosition() */, IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var, L_42); RuntimeObject* L_44 = ___defAttrInfo0; NullCheck(L_44); bool L_45; L_45 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Xml.IDtdAttributeInfo::get_IsXmlAttribute() */, IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var, L_44); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_46; L_46 = XmlTextReaderImpl_AddDefaultAttributeInternal_mB4779CC497BEAEBEFD9FF1467C9BBE524BE85AAF(__this, L_31, (String_t*)NULL, L_33, L_35, L_37, L_39, L_41, L_43, L_45, NULL); V_2 = L_46; bool L_47; L_47 = XmlTextReaderImpl_get_DtdValidation_mE5F1E5DAF37701D9E2278709B95107872BA06DA7(__this, NULL); if (!L_47) { goto IL_00e3; } } { OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* L_48 = __this->___onDefaultAttributeUse_58; if (!L_48) { goto IL_00d7; } } { OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* L_49 = __this->___onDefaultAttributeUse_58; RuntimeObject* L_50 = ___defAttrInfo0; NullCheck(L_49); OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_inline(L_49, L_50, __this, NULL); } IL_00d7: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_51 = V_2; RuntimeObject* L_52 = ___defAttrInfo0; NullCheck(L_52); RuntimeObject* L_53; L_53 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Xml.IDtdDefaultAttributeInfo::get_DefaultValueTyped() */, IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var, L_52); NullCheck(L_51); L_51->___typedValue_19 = L_53; Il2CppCodeGenWriteBarrier((void**)(&L_51->___typedValue_19), (void*)L_53); } IL_00e3: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_54 = V_2; return (bool)((!(((RuntimeObject*)(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)L_54) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); } } // System.Boolean System.Xml.XmlTextReaderImpl::AddDefaultAttributeNonDtd(System.Xml.Schema.SchemaAttDef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_AddDefaultAttributeNonDtd_m39693E225A68EB53B260ADBD16A020FDE741C2C5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attrDef0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; int32_t V_3 = 0; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* G_B14_0 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* G_B14_1 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* G_B13_0 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* G_B13_1 = NULL; XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* G_B15_0 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* G_B15_1 = NULL; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* G_B15_2 = NULL; { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_20; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_1 = ___attrDef0; NullCheck(L_1); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2; L_2 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_1, NULL); NullCheck(L_2); String_t* L_3; L_3 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_2, NULL); NullCheck(L_0); String_t* L_4; L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_0, L_3); V_0 = L_4; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = __this->___nameTable_20; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_6 = ___attrDef0; NullCheck(L_6); String_t* L_7; L_7 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_6, NULL); NullCheck(L_5); String_t* L_8; L_8 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_5, L_7); V_1 = L_8; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9 = __this->___nameTable_20; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_10 = ___attrDef0; NullCheck(L_10); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_11; L_11 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_10, NULL); NullCheck(L_11); String_t* L_12; L_12 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_11, NULL); NullCheck(L_9); String_t* L_13; L_13 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_9, L_12); V_2 = L_13; String_t* L_14 = V_1; NullCheck(L_14); int32_t L_15; L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL); if (L_15) { goto IL_0067; } } { String_t* L_16 = V_2; 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_0067; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_18 = __this->___namespaceManager_38; String_t* L_19 = V_2; NullCheck(L_18); String_t* L_20; L_20 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(17 /* System.String System.Xml.XmlNamespaceManager::LookupPrefix(System.String) */, L_18, L_19); V_1 = L_20; String_t* L_21 = V_1; if (L_21) { goto IL_0067; } } { String_t* L_22 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; V_1 = L_22; } IL_0067: { int32_t L_23 = __this->___index_12; V_3 = ((int32_t)il2cpp_codegen_add(L_23, 1)); goto IL_00ab; } IL_0072: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_24 = __this->___nodes_10; int32_t L_25 = V_3; NullCheck(L_24); int32_t L_26 = L_25; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_27 = (L_24)->GetAt(static_cast(L_26)); NullCheck(L_27); String_t* L_28 = L_27->___localName_2; String_t* L_29 = V_0; if ((!(((RuntimeObject*)(String_t*)L_28) == ((RuntimeObject*)(String_t*)L_29)))) { goto IL_00a7; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_30 = __this->___nodes_10; int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = L_31; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_33 = (L_30)->GetAt(static_cast(L_32)); NullCheck(L_33); String_t* L_34 = L_33->___prefix_3; String_t* L_35 = V_1; if ((((RuntimeObject*)(String_t*)L_34) == ((RuntimeObject*)(String_t*)L_35))) { goto IL_00a5; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_36 = __this->___nodes_10; int32_t L_37 = V_3; NullCheck(L_36); int32_t L_38 = L_37; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_39 = (L_36)->GetAt(static_cast(L_38)); NullCheck(L_39); String_t* L_40 = L_39->___ns_4; String_t* L_41 = V_2; if ((!(((RuntimeObject*)(String_t*)L_40) == ((RuntimeObject*)(String_t*)L_41)))) { goto IL_00a7; } } { String_t* L_42 = V_2; if (!L_42) { goto IL_00a7; } } IL_00a5: { return (bool)0; } IL_00a7: { int32_t L_43 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_43, 1)); } IL_00ab: { int32_t L_44 = V_3; int32_t L_45 = __this->___index_12; int32_t L_46 = __this->___attrCount_14; if ((((int32_t)L_44) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_45, 1)), L_46))))) { goto IL_0072; } } { String_t* L_47 = V_0; String_t* L_48 = V_2; String_t* L_49 = V_1; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_50 = ___attrDef0; NullCheck(L_50); String_t* L_51; L_51 = SchemaAttDef_get_DefaultValueExpanded_m61569B11E4FBDEED7A35CD5A39675B57CE6DB78F(L_50, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_52 = ___attrDef0; NullCheck(L_52); int32_t L_53; L_53 = SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline(L_52, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_54 = ___attrDef0; NullCheck(L_54); int32_t L_55; L_55 = SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline(L_54, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_56 = ___attrDef0; NullCheck(L_56); int32_t L_57; L_57 = SchemaAttDef_get_ValueLineNumber_m6E3FEFC8B5E9CB9D034125346161BC710E52423E_inline(L_56, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_58 = ___attrDef0; NullCheck(L_58); int32_t L_59; L_59 = SchemaAttDef_get_ValueLinePosition_m43CB9139B92F934F7AF67D0EFCF1A5BCC0A8DEAB_inline(L_58, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_60 = ___attrDef0; NullCheck(L_60); int32_t L_61; L_61 = SchemaAttDef_get_Reserved_m301C4E6E533BE8C00AFF8C087BCF8575B618D055_inline(L_60, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_62; L_62 = XmlTextReaderImpl_AddDefaultAttributeInternal_mB4779CC497BEAEBEFD9FF1467C9BBE524BE85AAF(__this, L_47, L_48, L_49, L_51, L_53, L_55, L_57, L_59, (bool)((!(((uint32_t)L_61) <= ((uint32_t)0)))? 1 : 0), NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_63 = L_62; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_64 = ___attrDef0; NullCheck(L_64); XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_65; L_65 = SchemaDeclBase_get_SchemaType_m46E8C95101CB925C57BD9CBF64D8A755335345B5_inline(L_64, NULL); G_B13_0 = L_63; G_B13_1 = L_63; if (!L_65) { G_B14_0 = L_63; G_B14_1 = L_63; goto IL_00fe; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_66 = ___attrDef0; NullCheck(L_66); XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_67; L_67 = SchemaDeclBase_get_SchemaType_m46E8C95101CB925C57BD9CBF64D8A755335345B5_inline(L_66, NULL); G_B15_0 = L_67; G_B15_1 = G_B13_0; G_B15_2 = G_B13_1; goto IL_0104; } IL_00fe: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_68 = ___attrDef0; NullCheck(L_68); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_69; L_69 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_68, NULL); G_B15_0 = ((XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF*)(L_69)); G_B15_1 = G_B14_0; G_B15_2 = G_B14_1; } IL_0104: { NullCheck(G_B15_1); G_B15_1->___schemaType_18 = G_B15_0; Il2CppCodeGenWriteBarrier((void**)(&G_B15_1->___schemaType_18), (void*)G_B15_0); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_70 = ___attrDef0; NullCheck(L_70); RuntimeObject* L_71; L_71 = SchemaDeclBase_get_DefaultValueTyped_m16C165322E494F1BC351D0DF53210CF3A906ECAF_inline(L_70, NULL); NullCheck(G_B15_2); G_B15_2->___typedValue_19 = L_71; Il2CppCodeGenWriteBarrier((void**)(&G_B15_2->___typedValue_19), (void*)L_71); return (bool)1; } } // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::AddDefaultAttributeInternal(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* XmlTextReaderImpl_AddDefaultAttributeInternal_mB4779CC497BEAEBEFD9FF1467C9BBE524BE85AAF (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___prefix2, String_t* ___value3, int32_t ___lineNo4, int32_t ___linePos5, int32_t ___valueLineNo6, int32_t ___valueLinePos7, bool ___isXmlAttribute8, const RuntimeMethod* method) { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; String_t* G_B2_0 = NULL; String_t* G_B2_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B2_2 = NULL; String_t* G_B1_0 = NULL; String_t* G_B1_1 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B1_2 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; String_t* G_B3_2 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B3_3 = NULL; { String_t* L_0 = ___localName0; String_t* L_1 = ___prefix2; String_t* L_2 = ___prefix2; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); G_B1_0 = L_1; G_B1_1 = L_0; G_B1_2 = __this; if ((((int32_t)L_3) > ((int32_t)0))) { G_B2_0 = L_1; G_B2_1 = L_0; G_B2_2 = __this; goto IL_000f; } } { String_t* L_4 = ___localName0; G_B3_0 = L_4; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; goto IL_0010; } IL_000f: { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; } IL_0010: { NullCheck(G_B3_3); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5; L_5 = XmlTextReaderImpl_AddAttribute_m9EA9D173DBD70BD92F1FE146724BB23DE17A8BE8(G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL); V_0 = L_5; String_t* L_6 = ___ns1; if (!L_6) { goto IL_0020; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_0; String_t* L_8 = ___ns1; NullCheck(L_7); L_7->___ns_4 = L_8; Il2CppCodeGenWriteBarrier((void**)(&L_7->___ns_4), (void*)L_8); } IL_0020: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_9 = V_0; String_t* L_10 = ___value3; NullCheck(L_9); NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91(L_9, L_10, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_11 = V_0; NullCheck(L_11); NodeData_set_IsDefaultAttribute_m6CFE78C360F0CAADE7E1398F7527374253267DCD_inline(L_11, (bool)1, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_12 = V_0; NullCheck(L_12); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_13 = (&L_12->___lineInfo_10); int32_t L_14 = ___lineNo4; int32_t L_15 = ___linePos5; LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_13, L_14, L_15, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_16 = V_0; NullCheck(L_16); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_17 = (&L_16->___lineInfo2_11); int32_t L_18 = ___valueLineNo6; int32_t L_19 = ___valueLinePos7; LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_17, L_18, L_19, NULL); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_20 = V_0; NullCheck(L_20); String_t* L_21 = L_20->___prefix_3; NullCheck(L_21); int32_t L_22; L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL); if (L_22) { goto IL_00c0; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_23 = V_0; NullCheck(L_23); String_t* L_24 = L_23->___localName_2; String_t* L_25 = __this->___XmlNs_78; bool L_26; L_26 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_24, L_25, NULL); if (!L_26) { goto IL_0143; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_27 = V_0; XmlTextReaderImpl_OnDefaultNamespaceDecl_m581C1C3BE2502F2CA915188A04CFD5126FF0EAD4(__this, L_27, NULL); bool L_28 = __this->___attrNeedNamespaceLookup_17; if (L_28) { goto IL_0143; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_29 = __this->___nodes_10; int32_t L_30 = __this->___index_12; NullCheck(L_29); int32_t L_31 = L_30; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_32 = (L_29)->GetAt(static_cast(L_31)); NullCheck(L_32); String_t* L_33 = L_32->___prefix_3; NullCheck(L_33); int32_t L_34; L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_33, NULL); if (L_34) { goto IL_0143; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_35 = __this->___nodes_10; int32_t L_36 = __this->___index_12; NullCheck(L_35); int32_t L_37 = L_36; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_38 = (L_35)->GetAt(static_cast(L_37)); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_39 = __this->___xmlContext_40; NullCheck(L_39); String_t* L_40 = L_39->___defaultNamespace_2; NullCheck(L_38); L_38->___ns_4 = L_40; Il2CppCodeGenWriteBarrier((void**)(&L_38->___ns_4), (void*)L_40); goto IL_0143; } IL_00c0: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_41 = V_0; NullCheck(L_41); String_t* L_42 = L_41->___prefix_3; String_t* L_43 = __this->___XmlNs_78; bool L_44; L_44 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_42, L_43, NULL); if (!L_44) { goto IL_0138; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_45 = V_0; XmlTextReaderImpl_OnNamespaceDecl_mB01BF6581EA46964237342B9942656CD4E06EE3F(__this, L_45, NULL); bool L_46 = __this->___attrNeedNamespaceLookup_17; if (L_46) { goto IL_0143; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_47 = V_0; NullCheck(L_47); String_t* L_48 = L_47->___localName_2; V_1 = L_48; int32_t L_49 = __this->___index_12; V_2 = L_49; goto IL_0124; } IL_00f2: { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_50 = __this->___nodes_10; int32_t L_51 = V_2; NullCheck(L_50); int32_t L_52 = L_51; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_53 = (L_50)->GetAt(static_cast(L_52)); NullCheck(L_53); String_t* L_54 = L_53->___prefix_3; String_t* L_55 = V_1; NullCheck(L_54); bool L_56; L_56 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_54, L_55, NULL); if (!L_56) { goto IL_0120; } } { NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* L_57 = __this->___nodes_10; int32_t L_58 = V_2; NullCheck(L_57); int32_t L_59 = L_58; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_60 = (L_57)->GetAt(static_cast(L_59)); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_61 = __this->___namespaceManager_38; String_t* L_62 = V_1; NullCheck(L_61); String_t* L_63; L_63 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_61, L_62); NullCheck(L_60); L_60->___ns_4 = L_63; Il2CppCodeGenWriteBarrier((void**)(&L_60->___ns_4), (void*)L_63); } IL_0120: { int32_t L_64 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_64, 1)); } IL_0124: { int32_t L_65 = V_2; int32_t L_66 = __this->___index_12; int32_t L_67 = __this->___attrCount_14; if ((((int32_t)L_65) < ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_66, L_67)), 1))))) { goto IL_00f2; } } { goto IL_0143; } IL_0138: { bool L_68 = ___isXmlAttribute8; if (!L_68) { goto IL_0143; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_69 = V_0; XmlTextReaderImpl_OnXmlReservedAttribute_m8A9D2126DA01CF2E3E3E9D99DC5A2D0D36707D25(__this, L_69, NULL); } IL_0143: { __this->___fullAttrCleanup_18 = (bool)1; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_70 = V_0; return L_70; } } // System.Void System.Xml.XmlTextReaderImpl::set_DisableUndeclaredEntityCheck(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___disableUndeclaredEntityCheck_74 = L_0; return; } } // System.Boolean System.Xml.XmlTextReaderImpl::UriEqual(System.Uri,System.String,System.String,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_UriEqual_m2246085111A7F67C5A6EC15914D339666930A294 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri10, String_t* ___uri1Str1, String_t* ___uri2Str2, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___resolver3; if (L_0) { goto IL_000c; } } { String_t* L_1 = ___uri1Str1; String_t* L_2 = ___uri2Str2; bool L_3; L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, L_2, NULL); return L_3; } IL_000c: { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = ___uri10; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_5; L_5 = Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682(L_4, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_5) { goto IL_0020; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_6 = ___resolver3; String_t* L_7 = ___uri1Str1; NullCheck(L_6); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8; L_8 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_6, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_7); ___uri10 = L_8; } IL_0020: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_9 = ___resolver3; String_t* L_10 = ___uri2Str2; NullCheck(L_9); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11; L_11 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_9, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_10); V_0 = L_11; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_12 = ___uri10; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = V_0; NullCheck(L_12); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13); return L_14; } } // System.Void System.Xml.XmlTextReaderImpl::RegisterConsumedCharacters(System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_RegisterConsumedCharacters_mC93EC992AB264BC7A08D193CEB0A87806E799D68 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int64_t ___characters0, bool ___inEntityReference1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72890B3416E9451EAEDCB2D432F0737DCEFD53AA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBA35549D8219B5F5409D55485656844283EB1A95); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0 = __this->___maxCharactersInDocument_35; if ((((int64_t)L_0) <= ((int64_t)((int64_t)0)))) { goto IL_0053; } } { int64_t L_1 = __this->___charactersInDocument_71; int64_t L_2 = ___characters0; V_0 = ((int64_t)il2cpp_codegen_add(L_1, L_2)); int64_t L_3 = V_0; int64_t L_4 = __this->___charactersInDocument_71; if ((((int64_t)L_3) >= ((int64_t)L_4))) { goto IL_002e; } } { XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648(__this, _stringLiteral72890B3416E9451EAEDCB2D432F0737DCEFD53AA, _stringLiteralBA35549D8219B5F5409D55485656844283EB1A95, NULL); goto IL_0035; } IL_002e: { int64_t L_5 = V_0; __this->___charactersInDocument_71 = L_5; } IL_0035: { int64_t L_6 = __this->___charactersInDocument_71; int64_t L_7 = __this->___maxCharactersInDocument_35; if ((((int64_t)L_6) <= ((int64_t)L_7))) { goto IL_0053; } } { XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648(__this, _stringLiteral72890B3416E9451EAEDCB2D432F0737DCEFD53AA, _stringLiteralBA35549D8219B5F5409D55485656844283EB1A95, NULL); } IL_0053: { int64_t L_8 = __this->___maxCharactersFromEntities_36; bool L_9 = ___inEntityReference1; if (!((int32_t)(((((int64_t)L_8) > ((int64_t)((int64_t)0)))? 1 : 0)&(int32_t)L_9))) { goto IL_00aa; } } { int64_t L_10 = __this->___charactersFromEntities_72; int64_t L_11 = ___characters0; V_1 = ((int64_t)il2cpp_codegen_add(L_10, L_11)); int64_t L_12 = V_1; int64_t L_13 = __this->___charactersFromEntities_72; if ((((int64_t)L_12) >= ((int64_t)L_13))) { goto IL_0085; } } { XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648(__this, _stringLiteral72890B3416E9451EAEDCB2D432F0737DCEFD53AA, _stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13, NULL); goto IL_008c; } IL_0085: { int64_t L_14 = V_1; __this->___charactersFromEntities_72 = L_14; } IL_008c: { int64_t L_15 = __this->___charactersFromEntities_72; int64_t L_16 = __this->___maxCharactersFromEntities_36; if ((((int64_t)L_15) <= ((int64_t)L_16))) { goto IL_00aa; } } { XmlTextReaderImpl_ThrowWithoutLineInfo_m296AA7014288C15144F39966C804698E69D71648(__this, _stringLiteral72890B3416E9451EAEDCB2D432F0737DCEFD53AA, _stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13, NULL); } IL_00aa: { return; } } // System.String System.Xml.XmlTextReaderImpl::StripSpaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_StripSpaces_m826418F3C4E7A73D3F22AC2C44E695A3923E6FBB (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StringBuilder_t* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { String_t* L_0 = ___value0; 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)0))) { goto IL_0011; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_3; } IL_0011: { V_1 = 0; V_2 = (StringBuilder_t*)NULL; goto IL_0025; } IL_0017: { int32_t L_4 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_1; int32_t L_6 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_0025; } } { return _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; } IL_0025: { String_t* L_7 = ___value0; int32_t L_8 = V_1; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL); if ((((int32_t)L_9) == ((int32_t)((int32_t)32)))) { goto IL_0017; } } { int32_t L_10 = V_1; V_3 = L_10; goto IL_00ae; } IL_0034: { String_t* L_11 = ___value0; int32_t L_12 = V_3; NullCheck(L_11); Il2CppChar L_13; L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_11, L_12, NULL); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)32))))) { goto IL_00aa; } } { int32_t L_14 = V_3; V_4 = ((int32_t)il2cpp_codegen_add(L_14, 1)); goto IL_004c; } IL_0046: { int32_t L_15 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_15, 1)); } IL_004c: { int32_t L_16 = V_4; int32_t L_17 = V_0; if ((((int32_t)L_16) >= ((int32_t)L_17))) { goto IL_005d; } } { String_t* L_18 = ___value0; int32_t L_19 = V_4; NullCheck(L_18); Il2CppChar L_20; L_20 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, L_19, NULL); if ((((int32_t)L_20) == ((int32_t)((int32_t)32)))) { goto IL_0046; } } IL_005d: { int32_t L_21 = V_4; int32_t L_22 = V_0; if ((!(((uint32_t)L_21) == ((uint32_t)L_22)))) { goto IL_0083; } } { StringBuilder_t* L_23 = V_2; if (L_23) { goto IL_0070; } } { String_t* L_24 = ___value0; int32_t L_25 = V_1; int32_t L_26 = V_3; int32_t L_27 = V_1; NullCheck(L_24); String_t* L_28; L_28 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_24, L_25, ((int32_t)il2cpp_codegen_subtract(L_26, L_27)), NULL); return L_28; } IL_0070: { StringBuilder_t* L_29 = V_2; String_t* L_30 = ___value0; int32_t L_31 = V_1; int32_t L_32 = V_3; int32_t L_33 = V_1; NullCheck(L_29); StringBuilder_t* L_34; L_34 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_29, L_30, L_31, ((int32_t)il2cpp_codegen_subtract(L_32, L_33)), NULL); StringBuilder_t* L_35 = V_2; NullCheck(L_35); String_t* L_36; L_36 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_35); return L_36; } IL_0083: { int32_t L_37 = V_4; int32_t L_38 = V_3; if ((((int32_t)L_37) <= ((int32_t)((int32_t)il2cpp_codegen_add(L_38, 1))))) { goto IL_00aa; } } { StringBuilder_t* L_39 = V_2; if (L_39) { goto IL_0094; } } { int32_t L_40 = V_0; StringBuilder_t* L_41 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_41); StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_41, L_40, NULL); V_2 = L_41; } IL_0094: { StringBuilder_t* L_42 = V_2; String_t* L_43 = ___value0; int32_t L_44 = V_1; int32_t L_45 = V_3; int32_t L_46 = V_1; NullCheck(L_42); StringBuilder_t* L_47; L_47 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_42, L_43, L_44, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_45, L_46)), 1)), NULL); int32_t L_48 = V_4; V_1 = L_48; int32_t L_49 = V_4; V_3 = ((int32_t)il2cpp_codegen_subtract(L_49, 1)); } IL_00aa: { int32_t L_50 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_50, 1)); } IL_00ae: { int32_t L_51 = V_3; int32_t L_52 = V_0; if ((((int32_t)L_51) < ((int32_t)L_52))) { goto IL_0034; } } { StringBuilder_t* L_53 = V_2; if (L_53) { goto IL_00c5; } } { int32_t L_54 = V_1; if (!L_54) { goto IL_00c3; } } { String_t* L_55 = ___value0; int32_t L_56 = V_1; int32_t L_57 = V_0; int32_t L_58 = V_1; NullCheck(L_55); String_t* L_59; L_59 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_55, L_56, ((int32_t)il2cpp_codegen_subtract(L_57, L_58)), NULL); return L_59; } IL_00c3: { String_t* L_60 = ___value0; return L_60; } IL_00c5: { int32_t L_61 = V_3; int32_t L_62 = V_1; if ((((int32_t)L_61) <= ((int32_t)L_62))) { goto IL_00d5; } } { StringBuilder_t* L_63 = V_2; String_t* L_64 = ___value0; int32_t L_65 = V_1; int32_t L_66 = V_3; int32_t L_67 = V_1; NullCheck(L_63); StringBuilder_t* L_68; L_68 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_63, L_64, L_65, ((int32_t)il2cpp_codegen_subtract(L_66, L_67)), NULL); } IL_00d5: { StringBuilder_t* L_69 = V_2; NullCheck(L_69); String_t* L_70; L_70 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_69); return L_70; } } // System.Void System.Xml.XmlTextReaderImpl::StripSpaces(System.Char[],System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_StripSpaces_m1A901DCF0658AEED529815A9F5386DF2797993DE (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value0, int32_t ___index1, int32_t* ___len2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; int32_t V_5 = 0; { int32_t* L_0 = ___len2; int32_t L_1 = *((int32_t*)L_0); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0006; } } { return; } IL_0006: { int32_t L_2 = ___index1; V_0 = L_2; int32_t L_3 = ___index1; int32_t* L_4 = ___len2; int32_t L_5 = *((int32_t*)L_4); V_1 = ((int32_t)il2cpp_codegen_add(L_3, L_5)); goto IL_001b; } IL_000f: { int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1)); int32_t L_7 = V_0; int32_t L_8 = V_1; if ((!(((uint32_t)L_7) == ((uint32_t)L_8)))) { goto IL_001b; } } { int32_t* L_9 = ___len2; *((int32_t*)L_9) = (int32_t)1; return; } IL_001b: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___value0; int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = L_11; uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast(L_12)); if ((((int32_t)L_13) == ((int32_t)((int32_t)32)))) { goto IL_000f; } } { int32_t L_14 = V_0; int32_t L_15 = ___index1; V_2 = ((int32_t)il2cpp_codegen_subtract(L_14, L_15)); int32_t L_16 = V_0; V_3 = L_16; goto IL_007c; } IL_002a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ___value0; int32_t L_18 = V_3; NullCheck(L_17); int32_t L_19 = L_18; uint16_t L_20 = (uint16_t)(L_17)->GetAt(static_cast(L_19)); uint16_t L_21 = L_20; V_4 = L_21; if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)32))))) { goto IL_0071; } } { int32_t L_22 = V_3; V_5 = ((int32_t)il2cpp_codegen_add(L_22, 1)); goto IL_0041; } IL_003b: { int32_t L_23 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_23, 1)); } IL_0041: { int32_t L_24 = V_5; int32_t L_25 = V_1; if ((((int32_t)L_24) >= ((int32_t)L_25))) { goto IL_004e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = ___value0; int32_t L_27 = V_5; NullCheck(L_26); int32_t L_28 = L_27; uint16_t L_29 = (uint16_t)(L_26)->GetAt(static_cast(L_28)); if ((((int32_t)L_29) == ((int32_t)((int32_t)32)))) { goto IL_003b; } } IL_004e: { int32_t L_30 = V_5; int32_t L_31 = V_1; if ((!(((uint32_t)L_30) == ((uint32_t)L_31)))) { goto IL_005c; } } { int32_t L_32 = V_2; int32_t L_33 = V_5; int32_t L_34 = V_3; V_2 = ((int32_t)il2cpp_codegen_add(L_32, ((int32_t)il2cpp_codegen_subtract(L_33, L_34)))); goto IL_0080; } IL_005c: { int32_t L_35 = V_5; int32_t L_36 = V_3; if ((((int32_t)L_35) <= ((int32_t)((int32_t)il2cpp_codegen_add(L_36, 1))))) { goto IL_0071; } } { int32_t L_37 = V_2; int32_t L_38 = V_5; int32_t L_39 = V_3; V_2 = ((int32_t)il2cpp_codegen_add(L_37, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_38, L_39)), 1)))); int32_t L_40 = V_5; V_3 = ((int32_t)il2cpp_codegen_subtract(L_40, 1)); } IL_0071: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = ___value0; int32_t L_42 = V_3; int32_t L_43 = V_2; Il2CppChar L_44 = V_4; NullCheck(L_41); (L_41)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract(L_42, L_43))), (Il2CppChar)L_44); int32_t L_45 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_45, 1)); } IL_007c: { int32_t L_46 = V_3; int32_t L_47 = V_1; if ((((int32_t)L_46) < ((int32_t)L_47))) { goto IL_002a; } } IL_0080: { int32_t* L_48 = ___len2; int32_t* L_49 = ___len2; int32_t L_50 = *((int32_t*)L_49); int32_t L_51 = V_2; *((int32_t*)L_48) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_50, L_51)); return; } } // System.Void System.Xml.XmlTextReaderImpl::BlockCopyChars(System.Char[],System.Int32,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___src0, int32_t ___srcOffset1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___src0; int32_t L_1 = ___srcOffset1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___dst2; int32_t L_3 = ___dstOffset3; int32_t L_4 = ___count4; Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_0, ((int32_t)il2cpp_codegen_multiply(L_1, 2)), (RuntimeArray*)L_2, ((int32_t)il2cpp_codegen_multiply(L_3, 2)), ((int32_t)il2cpp_codegen_multiply(L_4, 2)), NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl::BlockCopy(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_BlockCopy_mA73F788AFF2A8BA4D73F707BBB88A23C21D70854 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___src0, int32_t ___srcOffset1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___src0; int32_t L_1 = ___srcOffset1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___dst2; int32_t L_3 = ___dstOffset3; int32_t L_4 = ___count4; Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_0, L_1, (RuntimeArray*)L_2, L_3, L_4, NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif 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* XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___indentChars_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___newLineOnAttributes_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_DocTypeSystem_mA52DF45898F37EFBFAFFB19C5FF0E85DB1D59AB1_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___docTypeSystem_18; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_DocTypePublic_mCD450846EDA3E29E0627CBFF9A694BC276C9D847_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___docTypePublic_19; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___outputMethod_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___autoXmlDecl_21; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___standalone_20; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t43EC7C138A17FAAD7120408F039923082A70301A* XmlWriterSettings_get_CDataSectionElements_m41A55F92925DE680C957E3E18CF5414EB8D6DF58_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_0 = __this->___cdataSections_14; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_Invoke_m75607AC5443193A85145E05E5C6036A9BA0C61A2_inline (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (*FunctionPointerType) (HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method); return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___s0, ___sLen1, ___additionalEntropy2, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___isReadOnly_18 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlWriterSettings_set_ReadOnly_m912EC500806EE683803491EED4796F954F57AB42_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___isReadOnly_22 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlWriterSettings_set_OutputMethod_m8A74B5EE11DD5C1D00D97B896E36AA504C142837_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->___outputMethod_13 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_IndentInternal_m3180E0936B1C9CB8252AE222C1D17BB1A0448C22_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___indent_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* XmlWellFormedWriter_get_RawWriter_m214811761EBBCB44F46CF8C3590C4611CFE134CA_inline (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) { { XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___rawWriter_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnRemoveWriter_Invoke_m8120E31A18A45ED460B4106AB268FDE470B96257_inline (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, const RuntimeMethod* method); ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___writer0, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___useAsync_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___newLineHandling_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___omitXmlDecl_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___newLineChars_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___checkCharacters_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___closeOutput_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { bool L_0 = __this->___mergeCDataSections_16; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) { { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = __this->___encoding_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CharEntityEncoderFallback_set_StartOffset_mA243578474DC2FDE44519F05E12676FE3D0A2865_inline (CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->___startOffset_6 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t StringConcat_get_Count_mDCCC5B17A9A44FD12C76AAB3429C50663D243BDC_inline (StringConcat_t8995382764BCE27EF906F99F1235E172D02C6FB9* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___idxStr_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlEvent_get_EventType_m038BF9FCEE1E88C68C6E53DA3EB97B8D1E4639F7_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___eventType_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String1_mF166F5058EF8C8187E0172B410453A5EFE882D5D_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___s1_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String2_m375EEC0792EF396BD01AE50BFB26F1FC88E49397_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___s2_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEvent_get_String3_mBD908670214B739B46BDC45004A77391981433DE_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___s3_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlEvent_get_Object_m59185475B231CD3AB1A2509422D4B7F3F3E04BD2_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___o_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlEvent_InitEvent_m20FCF4B1533AD8E1D2C319BC1566FC2DE164593D_inline (XmlEvent_t71D4A86D45FCBC2D95E47F0EC32CEC49FEA1E0B2* __this, int32_t ___eventType0, const RuntimeMethod* method) { { int32_t L_0 = ___eventType0; __this->___eventType_0 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_CloseInput_m59A87285F3D07FC87B95FDA27AB1462D1318342E_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___closeInput_17; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___validationType_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_Async_m17DF552FF8F0211C2AA2E6E94EFA3A0F8474A8F5_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___useAsync_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderDebuggerDisplayProxy__ctor_m56B82747E748FBB7BC8D0A1728D526EA23B54C1A_inline (XmlReaderDebuggerDisplayProxy_tCBCA1821E9EDC752D1884A7A4343C3B0C7134AC9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0; __this->___reader_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_0), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___U3CIsXmlResolverSetU3Ek__BackingField_19 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IsXmlResolverSet_mBE7710812B7872C2622B19D7582E8BB43D82EE50_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___U3CIsXmlResolverSetU3Ek__BackingField_19; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_0 = __this->___valEventHandler_16; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___validationFlags_14; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___value0, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___value0; __this->___outerReader_75 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___outerReader_75), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_25; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Normalization_mE15D41565024AE5102E07C09891BC40D027E6529_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___normalize_24; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlReaderSettings_get_NameTable_mAF10C63E556531DDED4ABA060B60FA89D0D263BE_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreWhitespace_mB0490662AA55A785F86A219B1A9317246868AF33_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___ignoreWhitespace_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreProcessingInstructions_mF0F6DF6AA4090054BE46DB02400F18CEC5FC850A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___ignorePIs_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_IgnoreComments_m84AF33F6BBE1C9AF5CD0FB0665B923816CED496F_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___ignoreComments_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlReaderSettings_get_CheckCharacters_m92427DD940718F4E7703229BC80C698DA77A6F35_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { bool L_0 = __this->___checkCharacters_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_LineNumberOffset_m1A1AC89A54212AD35ABA966620FD66EE6DF6963A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNumberOffset_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_LinePositionOffset_m77D589900D124C6DAD97C42186A63260F877BF52_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePositionOffset_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNo_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___dtdProcessing_12; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t XmlReaderSettings_get_MaxCharactersInDocument_mBF86AACB085807A6D3E9936CF287051D34F5261C_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->___maxCharactersInDocument_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t XmlReaderSettings_get_MaxCharactersFromEntities_mFFA78372DCCFF598DEC760725FA69CAB89A651C3_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->___maxCharactersFromEntities_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ConformanceLevel_m56DEADA9ADB805F1C190609DEA42E5322AD109EB_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___conformanceLevel_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->____nt_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____baseURI_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlParserContext_get_Encoding_m70D0D1E92582C7F95EE6E9024771C44129B1AC52_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = __this->____encoding_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___xmlResolver_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NodeData_set_IsEmptyElement_mD9AA39D1F91A00BEDBED1204654917447AF2D57D_inline (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___isEmptyOrDefault_14 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->____nsMgr_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlException_get_ResString_m977084C1A1F883C2BED73B1F956D980E62649C7A_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___res_18; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNumber_20; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePosition_21; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_XmlLang_m15AAD2E5AA247235638A436E68596B9A89BFE443_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____xmlLang_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlParserContext_get_XmlSpace_m52BE2428971EFFCBE9922F1B37FEEE9940AF1891_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____xmlSpace_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_mF0B0C0F3D7173DBD9A59C94B5364AAF425F1D599_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields*)il2cpp_codegen_static_fields_for(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var))->___s_instance_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NodeData_set_IsDefaultAttribute_m6CFE78C360F0CAADE7E1398F7527374253267DCD_inline (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->___isEmptyOrDefault_14 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____docTypeName_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____pubId_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____sysId_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____internalSubset_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_inline (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method); ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___defaultAttribute0, ___coreReader1, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___name_0; return L_0; } } 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 int32_t SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNum_12; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePos_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLineNumber_m6E3FEFC8B5E9CB9D034125346161BC710E52423E_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___valueLineNum_14; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_ValueLinePosition_m43CB9139B92F934F7AF67D0EFCF1A5BCC0A8DEAB_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___valueLinePos_15; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_Reserved_m301C4E6E533BE8C00AFF8C087BCF8575B618D055_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___reserved_16; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* SchemaDeclBase_get_SchemaType_m46E8C95101CB925C57BD9CBF64D8A755335345B5_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_0 = __this->___schemaType_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_0 = __this->___datatype_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SchemaDeclBase_get_DefaultValueTyped_m16C165322E494F1BC351D0DF53210CF3A906ECAF_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___defaultValueTyped_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____size_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR 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 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(L_7), (RuntimeObject*)L_8); return; } IL_0034: { RuntimeObject* L_9 = ___item0; (( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11)); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR 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; } }