#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #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 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 GenericVirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct 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 GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InvokerActionInvoker0 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { method->invoker_method(methodPtr, method, obj, NULL, NULL); } }; 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 InvokerActionInvoker3; template struct InvokerActionInvoker3 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3) { void* params[3] = { p1, p2, &p3 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerFuncInvoker0 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { R ret; method->invoker_method(methodPtr, method, obj, NULL, &ret); return ret; } }; template struct InvokerFuncInvoker1; template struct InvokerFuncInvoker1 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { R ret; void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template 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_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53; // System.Action`1 struct Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43; // System.Action`1 struct Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC; // System.Action`1 struct Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6; // System.Action`1 struct Action_1_t996DFD52B4BDA6CBE8058C13167C4D2B8C612CAA; // System.Action`1 struct Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B; // System.Action`1 struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87; // System.Action`1 struct Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01; // System.Action`1 struct Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB; // System.Action`1 struct Action_1_t28FBAE79F893547A07D226BAE7DAF27C4568F7C9; // System.Action`2 struct Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F; // System.Action`2 struct Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A; // System.Action`2 struct Action_2_t96795EA3C89E06F9B479144D4AEBDFA5FE40A1D1; // System.Action`2 struct Action_2_tE18332F29E8B0E081617E38B4A34F0089F310E53; // UnityEngine.UIElements.UIR.BasicNode`1 struct BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB; // UnityEngine.UIElements.ChangeEvent`1 struct ChangeEvent_1_t59730190AEEC760B97F416AC38A51AB64D67D371; // UnityEngine.UIElements.ChangeEvent`1 struct ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80; // System.Comparison`1 struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645; // System.Comparison`1 struct Comparison_1_t1E2D8261CC6BDF2163403F266C5410F5D18FABE0; // System.Comparison`1 struct Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBFA6A92ADF404217ADC6287258F898AC33533339; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tDAF0CFE0CE67D29980B6E16E14494B452AA7C270; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t37F557505423C20CABB84F18ADA6FE019FD5411F; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t2A9A7F3ECFC3483F89253F3C4BB5BE98A37F6EF3; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tED98F9DEB20653ED194C08F6C90D3752C3EDEA28; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9BEC34FFAABF80FD27E35B9955364F9D176F44EA; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF1C3BFA70D6875EEF369CE69E661C6B617B5BEC0; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tC07547303D7A0CFE94CCC1B82240C03FD8850DD4; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tF5B9124CEB160EFC53E943AA29271854DB5D5E8E; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t074F374661507958319B62431E9384D959AA1B09; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t537183F3C55578258C5DAF68E510087AD97961A7; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tF39C691B05308835A836D33741E4656809B44C3C; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tDFA2360CDCE536A2DE7FA625C0295865A67D40B4; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913; // System.Func`1 struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457; // System.Func`1 struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4; // System.Func`1 struct Func_1_t21422914E40DBAC34FD54D39D995588A4B7E7D63; // System.Func`2 struct Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C; // System.Func`2 struct Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069; // System.Func`2 struct Func_2_tACBF5A1656250800CE861707354491F0611F6624; // System.Func`2 struct Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2; // System.Func`2 struct Func_2_t33ED521BE3A7E943FA8D764514952EDF1AF1C0FA; // System.Func`3 struct Func_3_tE3C94684D6DF31A003FECCCBC631507046C81ECE; // System.Func`3 struct Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E; // System.Func`3 struct Func_3_t79BD8B3734A7771622ADCD860FFC589C81C058FA; // System.Func`3 struct Func_3_tAD7EE8FC165028B732FB7B83E71870F0B8E791E0; // System.Func`3 struct Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69; // System.Func`3 struct Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10; // System.Func`3 struct Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D; // System.Func`3 struct Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC; // System.Func`3 struct Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E; // System.Func`3 struct Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502; // System.Func`3 struct Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F; // System.Func`3 struct Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6; // System.Func`4 struct Func_4_t0E2E2E47320C72FA06D4AFD7F4375C61BD17084B; // System.Func`4 struct Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE; // System.Func`4 struct Func_4_t08BAB91515459FF545B4A7D8524D9C59D8CFB281; // System.Func`4 struct Func_4_tA5546A90ACF2FBA116ECAAEB518084F68FC2040A; // System.Func`4 struct Func_4_tB4D8B68CF259C4CADB0575DF6DB72156D5EBE1BD; // System.Collections.Generic.HashSet`1 struct HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE; // System.Collections.Generic.HashSet`1 struct HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885; // System.Collections.Generic.HashSet`1 struct HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45; // System.Collections.Generic.HashSet`1 struct HashSet_1_tD7C5CB4AA796FB70BE1FB3BB598BF7B3BD245035; // System.Collections.Generic.HashSet`1 struct HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tFBAB9009349DC2FC4CC42F96D81C9D0B29E160FE; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tCEF1F6C69EA77DC2CEFABB0AC09506F177DC9164; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tCC160952E834BABD4C3A6BDA971ED4DD97B3B01D; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t2CBC1E01F8DDF83EBED512F498266114532DD927; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tDBFC8496F14612776AF930DBF84AFE7D06D1F0E9; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tDBA96AAC21C7C21D26B68A9F19E6AE4E015D2316; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t341DBC625B94A179D2F2C3E3CF45C76E281F4612; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t28C95BC84663336FDD24A851DFF64782876EA734; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tF175EE4608832085A0EE2A97DAE545B83F097888; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t7032C42BDB9F81A00537C262F53859F054515A62; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t02AA3851B1EDACE86C778A221321A359FA3441D4; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tAFB9383D0D5BB1B6F60638686806B2F9E2FF6F65; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t85D7EE0BF2C0CFEF0B29BD162EBF6D7932A18524; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tC5B239E49B6B3F63B394F906A069240465B098DF; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tF6D68C9DEFB5EE51E16CCE2C8FA4B432F4629265; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tAE1CD1CE327D07F072532A89E6854F2C33EB014A; // UnityEngine.UIElements.KeyboardEventBase`1 struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA; // UnityEngine.UIElements.KeyboardEventBase`1 struct KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C; // UnityEngine.UIElements.UIR.LinkedPoolItem`1 struct LinkedPoolItem_1_tD677E54AEDFCA19642ADA7F09E665AC2A79625DF; // UnityEngine.UIElements.UIR.LinkedPoolItem`1 struct LinkedPoolItem_1_tEE25C8B557C971B237ECBF0BA28C57C48372D9EF; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_t27505BB5E276B4361ACE769F2922D5FDC6742877; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_tC5395F299B7B9824571198DF9F00CAC6033CD7D6; // System.Collections.Generic.List`1> struct List_1_t60F39D768DAD2345527AD3EE73FAB2667DF4F260; // System.Collections.Generic.List`1 struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434; // System.Collections.Generic.List`1 struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3; // System.Collections.Generic.List`1 struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941; // System.Collections.Generic.List`1 struct List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6; // System.Collections.Generic.List`1 struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA; // System.Collections.Generic.List`1 struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73; // System.Collections.Generic.List`1 struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576; // System.Collections.Generic.List`1 struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC; // System.Collections.Generic.List`1 struct List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E; // System.Collections.Generic.List`1 struct List_1_tA1D3D4FCA4CFF8E02845F48D747A4C704D4C9CAE; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD; // System.Collections.Generic.List`1 struct List_1_t365205E6BE687FCF41975C16741DD9C303C1C269; // System.Collections.Generic.List`1 struct List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122; // System.Collections.Generic.List`1 struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F; // System.Collections.Generic.List`1 struct List_1_t686B3253BF1ECA33C528F281967CD2DA263C252E; // System.Collections.Generic.List`1 struct List_1_t05E80B72E11DAF32DE5C2209E33E4AA7D99CCE45; // System.Collections.Generic.List`1 struct List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777; // System.Collections.Generic.List`1 struct List_1_t63B31A07921C5E19BCA9E85447E2260F37E3E777; // System.Collections.Generic.List`1 struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95; // System.Collections.Generic.List`1 struct List_1_tA2DA9358299C5C3E2E66D546D9B0E9089C3D7DBE; // System.Collections.Generic.List`1 struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66; // System.Collections.Generic.List`1 struct List_1_t491E344573B9D6F61E36AF56132B7412453928C9; // System.Collections.Generic.List`1 struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094; // System.Collections.Generic.List`1 struct List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B; // System.Collections.Generic.List`1 struct List_1_t70BBA01AC05569034FEB9847D92E5F046528FBAF; // System.Collections.Generic.List`1 struct List_1_t10D8EC0B84DD3EDB54DA9AE6AF65B5AB50BA9D5A; // System.Collections.Generic.List`1 struct List_1_t3A511618E31C01BE3D1EA788ABB9AD6F354E8485; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t4B6FA9735BC5BF40624419B712D9493C7EF11802; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t006A020DCEB7871AAAA93FEE358DCC0499FD14F0; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t7FDDBA964772905A89719355C6E4F07922AA0C78; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t5FC06EAFF1CF75D5A94102AEB85EBD17B92324E7; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t30C8F70D98C7F0227113800C031CF8E316BD7608; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tC6626AC387E62EDBD0EA56924280D44E6476EC67; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t37080504ECCFF986BCF1E7D4C1D26BB929DEC7E9; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tCCD0EE03B0457A6BE1AE2143C496E26597C0ACE1; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tE16398520DF85760BDD6FCD30EE299D26093F06E; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tFD015A99DC45F4AADDAFE8F44225A6FF6289EB10; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tD78AE6F54B951DDB2D0439009049A8F2422D78BA; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tE5621495D8A201AC7F4D06B7AEE892CCBC8B5BFC; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t4CCB307C788F662AC27F4884CC938F63B3E4836C; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t197544EA692A3B4CA53A6C415A61333162073672; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t2E11CDAC72859A812629F64CB88669487FD5F0B5; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tDF51BF8B537DAD012AFE10CFC541363835B64992; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t02BAEDA04C0651D5684B8E2455CF77AC4D6B94C4; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tBB87D46D9504DA0AB7392802F8F6A309B72F4D7B; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tD9D36AAF97C27AAA8F8C10396B70EE8016C3DB39; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t8AFFCB7DAAEE40E4043E3A85360B759A778B3F5B; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t378830198BB4C87EA1C9049351B640D8484ED9D4; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tEA9E5136DCE87BF5FDC7E117132869969F52A700; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E; // UnityEngine.UIElements.PointerCaptureEventBase`1 struct PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC; // UnityEngine.UIElements.PointerCaptureEventBase`1 struct PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496; // System.Collections.Generic.Queue`1 struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A; // System.Collections.Generic.Stack`1> struct Stack_1_t89D5688AF7850C61B3DF8B5BED042DEBFA7AC9BC; // System.Collections.Generic.Stack`1 struct Stack_1_tED2C2A36F6C3F66D1AE3ECC4B99177D661C08F11; // System.Collections.Generic.Stack`1 struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_tE3B03C5A4D3A9B62395A67012747638ADE7B8D2D; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_tC1DACCA9274641DD267223338E7C026D4CF520AC; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t31FA216B798ED8FA3490C3CA515528DCA4F26A2C; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t2B8264420B693D76C74F99F305197870C62C10F4; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_tC8FEB488506DC99B874A454BED371793598879E9; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_tFBFEC4A6BE1900A8D6115CD438F3CCC15A0DBCE9; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t9DC16C7535A4271EA0FD763A64CD7CF84670EC64; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t25D5D3420391A40A0B978B0D5CA13F775283274E; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t864A52D0F7726A4F4C2C667BCB56E8A745F7340C; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t896507B4A758D8F131A06984765BA0F57C8939A2; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t7FB3FD474018D429F5F1EE705EF9ADA6F197EDEF; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState struct TransitionEventsFrameState_t3F9A8EB2B33780D3F2037BFEED0A3C6A03B03FEC; // UnityEngine.UIElements.TypedUxmlAttributeDescription`1 struct TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39; // UnityEngine.UIElements.UxmlEnumAttributeDescription`1 struct UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3; // UnityEngine.UIElements.UxmlEnumAttributeDescription`1 struct UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tA5B21BD283B57202633CBFD2ABB84CE9AD987DF2; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tA0A97C5E51045F69E0AB6E6EDDD9EBB7BBDB30C9; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t610505C1353EB2B43336B80F2791B3368126589C; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t885AA1B6C959F1BB0EB2CBBE91A8773264DBA655; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t11DEEA44D63ED0917BD47EFD3C51372B0EA9E1BF; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t95D84B4301FFC2CEAA9EBB93DE72CFC9CE2995B2; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t06CDA99DB645BD0BA87E9F06322972BF06B8B0B1; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tBFB44848CD0102BAD045541C44604965E5A35EA2; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t04D5F77EBC72D81BB7FE7199D6C9DC65DEB60064; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1 struct ValuesDiscrete_1_t63B8F92F4DAABF488DAEF85235D684338A5BF983; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1 struct ValuesDiscrete_1_t3FE71D851C5B6AD9E518846FD0AE377C4FD977C8; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1 struct ValuesDiscrete_1_tEEAF52293B68D5800CAC73A14E2C3B3B02E6C2B1; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1 struct ValuesDiscrete_1_t7E99F13B947129354031274B76C3B094031D33E7; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t34227637D0C93F730700DFD895768AF8F8C7FF8D; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1 struct Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t4FC6419C796BBADFEC77D9CB97A3FB7B1C6D5CB8; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_tDFE3104887D7AEB406BC646123D7C8AA698EB58A; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t024015F2FF2FC69854D9FD05CE50190B4B1F3A64; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t568C72D6625FA05F854FF86F02910C531D98B72E; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t920355EC41DECEE4E1D5688CEA971923802FC9A3; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_tE2C14BF5968870FDDD993014F93FDE3FC5572837; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t4EA7859B72A26B20006E0BD02EC63611C4C71485; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_tF2D26ADE6FCC1E97FB2FFC1DC56D63F08E711A3C; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t60D6EDC5438323017497721F3A8E4A0376F2B741; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_t8EE2FFAAC9B7C301CF4690109183A2EFDFC5A20F; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_tB3A736D4DE7E747B7C1B6CA7B36EB41FA6207653; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData[] struct EmptyDataU5BU5D_tFD0240910F0FF75CC94A141EDE346043BD9C179C; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t20232555B01299E50C6D0216F01265BFAE9192BD; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tD309F552B0A24641B68AB256A56D6957D257D1F1; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t05E52844511353E4ABF08A5014CE9794F2BC7FB2; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t5C6BE3F8D8C9F5DBCDEF6446DF86F557102A5F67; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tF9A333B05D89C80863205975D040FE0EF8B5D19B; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t7F98B69A7E03C7962E8464AC964AF60FAD664681; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t524C33EA8D08013B8734724ABCA925485CF3B799; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_t056AB4465CFC0A3D07F7C0975B7EE25ED67AB270; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_t94CA178993B9FC71F63E131258D20773C4BC2048; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData[] struct StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t0DDECCB612303E94B577E5978AB4B36B5192AFB1; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t7D21FA13314B030338650732321EC6B9E93FF0F6; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t45DAD27FEA03547B7581715461816FA37E7EC651; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData[] struct TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3; // UnityEngine.UIElements.Background[] struct BackgroundU5BU5D_t29762095DD694E79A85A59135735FF02E54C4B46; // System.Boolean[] struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // UnityEngine.Color[] struct ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389; // UnityEngine.UIElements.ComputedTransitionProperty[] struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // UnityEngine.UIElements.StyleSheets.Dimension[] struct DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B; // UnityEngine.Font[] struct FontU5BU5D_t418554EC037A82050D1E53593D5B2A8C395054F3; // UnityEngine.UIElements.FontDefinition[] struct FontDefinitionU5BU5D_t31BDC3E2D72918B36F815F95F7CBA1F057E3DA39; // UnityEngine.UIElements.GradientSettings[] struct GradientSettingsU5BU5D_t5A316EDE81269563C087800A519341276F98AF9C; // UnityEngine.UIElements.IEventDispatchingStrategy[] struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97; // UnityEngine.UIElements.IEventHandler[] struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D; // UnityEngine.UIElements.IGroupBoxOption[] struct IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC; // UnityEngine.UIElements.IMouseEvent[] struct IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8; // UnityEngine.UIElements.IPointerEvent[] struct IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22; // UnityEngine.UIElements.Experimental.IValueAnimationUpdate[] struct IValueAnimationUpdateU5BU5D_t250909B263EE1BB62A80F2449EAD3709E83C5C78; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.Int32Enum[] struct Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // UnityEngine.UIElements.Length[] struct LengthU5BU5D_t6E92E14664BA86924824C32A0BBE10AEC53C7FAE; // UnityEngine.UIElements.ManipulatorActivationFilter[] struct ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // UnityEngine.Object[] struct ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A; // UnityEngine.UIElements.Rotate[] struct RotateU5BU5D_tD482C518713DEC5763C34C827A9B6DB565776772; // UnityEngine.UIElements.StyleSheets.ScalableImage[] struct ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52; // UnityEngine.UIElements.Scale[] struct ScaleU5BU5D_tE608175710457D7343DD849244BF59B58157F0EF; // UnityEngine.UIElements.StyleSheets.SelectorMatchRecord[] struct SelectorMatchRecordU5BU5D_t6033C70B62D6E4C7261F40F64F75070577947A19; // System.Single[] struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // UnityEngine.UIElements.StyleComplexSelector[] struct StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857; // UnityEngine.UIElements.StyleProperty[] struct StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] struct StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359; // UnityEngine.UIElements.StyleRule[] struct StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3; // UnityEngine.UIElements.StyleSelector[] struct StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D; // UnityEngine.UIElements.StyleSheet[] struct StyleSheetU5BU5D_tFFAA0F92657246FFBFE954290B305CCCBA9DD1A7; // UnityEngine.UIElements.StyleValueHandle[] struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE; // UnityEngine.UIElements.TextShadow[] struct TextShadowU5BU5D_tF37C87EBD3D8745BEDABCE2EA499DE16C15B5D8C; // UnityEngine.UIElements.TransformOrigin[] struct TransformOriginU5BU5D_t0BDBC9C8F1888009152284DC2903B3C289F826DA; // UnityEngine.UIElements.Translate[] struct TranslateU5BU5D_t9199DFD72A8EC5FA4C33D75E5F85242F9F97E358; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.UInt16[] struct UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83; // UnityEngine.Vector2[] struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA; // UnityEngine.UIElements.VectorImageVertex[] struct VectorImageVertexU5BU5D_tA19C37074824265F1A5684A6F2C156559455C1C4; // UnityEngine.UIElements.VisualElement[] struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF; // UnityEngine.UIElements.UIR.MeshBuilder/VertexClipEdge[] struct VertexClipEdgeU5BU5D_t996146320A0ACC313D3EF0F5791237A90C2E34AA; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values[] struct ValuesU5BU5D_t5332999C48416329B2A447FCD8C71113DDB459EA; // UnityEngine.UIElements.StyleSheet/ImportStruct[] struct ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9; // UnityEngine.UIElements.TemplateAsset/AttributeOverride[] struct AttributeOverrideU5BU5D_t4D2E0B93EF3A1A1EB58AC1F48E6CFE20A0EA27E8; // UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord[] struct FocusRingRecordU5BU5D_tEF4D674D6630E0BABDC146E3DA39D58EEE0056F6; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07; // UnityEngine.UIElements.UIR.Allocator2D struct Allocator2D_t5B53CF899C3FABD99F29602424924ACAB9E2A157; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // UnityEngine.UIElements.AtlasBase struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC; // UnityEngine.UIElements.BaseRuntimePanel struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4; // UnityEngine.UIElements.BaseVisualElementPanel struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303; // UnityEngine.UIElements.BaseVisualTreeHierarchyTrackerUpdater struct BaseVisualTreeHierarchyTrackerUpdater_t9FD4CD3627F642894C6485E93BF309961FCFBC03; // UnityEngine.UIElements.BaseVisualTreeUpdater struct BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41; // UnityEngine.UIElements.BindableElement struct BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // UnityEngine.UIElements.CallbackEventHandler struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4; // UnityEngine.UIElements.ClickDetector struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31; // UnityEngine.UIElements.Clickable struct Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834; // UnityEngine.UIElements.ContextualMenuManager struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B; // UnityEngine.UIElements.CursorManager struct CursorManager_tB28ED880450C37A0831769315A14D246F5A2E060; // UnityEngine.UIElements.CustomStyleResolvedEvent struct CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6; // UnityEngine.UIElements.DefaultEventSystem struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98; // UnityEngine.UIElements.DefaultGroupManager struct DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // UnityEngine.UIElements.DynamicAtlas struct DynamicAtlas_tA1A51ADBE1DBFD82F6D52D5CA4D09D82F89678A8; // UnityEngine.UIElements.DynamicAtlasCustomFilter struct DynamicAtlasCustomFilter_tD33BC519AF0B6E7D8C273CB64D900DF5FEB1E3C6; // UnityEngine.UIElements.DynamicAtlasPage struct DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E; // UnityEngine.UIElements.ElementUnderPointer struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904; // UnityEngine.Event struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB; // UnityEngine.UIElements.EventBase struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C; // UnityEngine.UIElements.EventCallbackRegistry struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85; // UnityEngine.UIElements.EventDispatcher struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398; // System.Exception struct Exception_t; // UnityEngine.UIElements.FocusChangeDirection struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF; // UnityEngine.UIElements.FocusController struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A; // UnityEngine.UIElements.Focusable struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0; // UnityEngine.Font struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6; // UnityEngine.TextCore.Text.FontAsset struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958; // UnityEngine.GameObject struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F; // UnityEngine.UIElements.GeometryChangedEvent struct GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A; // UnityEngine.UIElements.GetViewDataDictionary struct GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638; // UnityEngine.UIElements.HierarchyEvent struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705; // UnityEngine.UIElements.StyleSheets.HierarchyTraversal struct HierarchyTraversal_t89B1D4664C1C066FEED9B372488A3F751CB6FE7D; // UnityEngine.UIElements.IBinding struct IBinding_t02FD99E9C9F2072B28E110F16C157666F5B2DBC7; // UnityEngine.UIElements.ICursorManager struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // UnityEngine.UIElements.IEventHandler struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3; // UnityEngine.UIElements.IFocusRing struct IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78; // UnityEngine.UIElements.IGroupBoxOption struct IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7; // UnityEngine.UIElements.IMGUIContainer struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26; // UnityEngine.UIElements.IManipulator struct IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708; // UnityEngine.UIElements.IMouseEvent struct IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E; // UnityEngine.UIElements.IPanel struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5; // UnityEngine.UIElements.IPointerEvent struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7; // UnityEngine.UIElements.IResolvedStyle struct IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89; // UnityEngine.UIElements.IScheduler struct IScheduler_t70B716998476DDF4EED6DE7A0DA997AB9F9C75CE; // UnityEngine.UIElements.ISerializableJsonDictionary struct ISerializableJsonDictionary_tF3ACE88703D5968A97E7CC2CACDB1BBBF394A0A0; // UnityEngine.UIElements.IStylePainter struct IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6; // UnityEngine.UIElements.IStylePropertyAnimationSystem struct IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2; // UnityEngine.UIElements.IStylePropertyAnimations struct IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764; // UnityEngine.UIElements.ITextHandle struct ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4; // UnityEngine.UIElements.IUxmlAttributes struct IUxmlAttributes_t9B6679F04874117C59014DE49C35B1841F9A1DDE; // UnityEngine.UIElements.Experimental.IValueAnimationUpdate struct IValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B; // UnityEngine.UIElements.IVisualElementScheduledItem struct IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F; // UnityEngine.UIElements.IVisualElementScheduler struct IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8; // UnityEngine.UIElements.IVisualTreeUpdater struct IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06; // UnityEngine.UIElements.ImmediateModeException struct ImmediateModeException_t7A6F44A9035C26E64FF8BCD4964F7189506F063D; // UnityEngine.UIElements.InlineStyleAccess struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165; // UnityEngine.UIElements.KeyDownEvent struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C; // UnityEngine.UIElements.KeyboardNavigationManipulator struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3; // UnityEngine.UIElements.Label struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70; // UnityEngine.UIElements.LoadResourceFunction struct LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850; // UnityEngine.Yoga.Logger struct Logger_t092B1218ED93DD47180692D5761559B2054234A0; // UnityEngine.UIElements.Manipulator struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE; // UnityEngine.Material struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // UnityEngine.UIElements.MeshGenerationContext struct MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62; // UnityEngine.UIElements.UIR.MeshHandle struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.UIElements.MouseCaptureEvent struct MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014; // UnityEngine.UIElements.MouseCaptureOutEvent struct MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5; // UnityEngine.UIElements.MouseDownEvent struct MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD; // UnityEngine.UIElements.MouseManipulator struct MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D; // UnityEngine.UIElements.MouseMoveEvent struct MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5; // UnityEngine.UIElements.MouseUpEvent struct MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811; // UnityEngine.UIElements.NavigationCancelEvent struct NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E; // UnityEngine.UIElements.NavigationMoveEvent struct NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF; // UnityEngine.UIElements.NavigationSubmitEvent struct NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1; // UnityEngine.Object struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C; // UnityEngine.ObjectGUIState struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15; // UnityEngine.UIElements.Panel struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9; // UnityEngine.UIElements.PointerCancelEvent struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51; // UnityEngine.UIElements.PointerCaptureEvent struct PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB; // UnityEngine.UIElements.PointerCaptureOutEvent struct PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5; // UnityEngine.UIElements.PointerDispatchState struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A; // UnityEngine.UIElements.PointerDownEvent struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51; // UnityEngine.UIElements.PointerManipulator struct PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72; // UnityEngine.UIElements.PointerMoveEvent struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3; // UnityEngine.UIElements.PointerStationaryEvent struct PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A; // UnityEngine.UIElements.PointerUpEvent struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9; // UnityEngine.UIElements.PropagationPaths struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5; // System.Text.RegularExpressions.Regex struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772; // UnityEngine.UIElements.UIR.RenderChainCommand struct RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727; // UnityEngine.RenderTexture struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27; // UnityEngine.UIElements.RepaintData struct RepaintData_t90534752135661579EC254884F550545D001B5EA; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // UnityEngine.UIElements.SavePersistentViewData struct SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716; // UnityEngine.ScriptableObject struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37; // UnityEngine.Shader struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692; // UnityEngine.Sprite struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99; // System.String struct String_t; // UnityEngine.UIElements.StyleComplexSelector struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD; // UnityEngine.UIElements.StyleMatchingContext struct StyleMatchingContext_tF3A1D3569F8EEB1C549CEAE4998224A60A0A5D26; // UnityEngine.UIElements.StyleProperty struct StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83; // UnityEngine.UIElements.StylePropertyAnimationSystem struct StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718; // UnityEngine.UIElements.StyleSheets.StylePropertyReader struct StylePropertyReader_tA960AF3A0C411045E92E04E997D7EB2EF1B7552A; // UnityEngine.UIElements.StyleRule struct StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E; // UnityEngine.UIElements.StyleSheet struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428; // UnityEngine.UIElements.StyleVariableContext struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527; // UnityEngine.UIElements.StyleVariableResolver struct StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185; // UnityEngine.UIElements.TemplateAsset struct TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807; // UnityEngine.UIElements.TemplateContainer struct TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2; // UnityEngine.UIElements.TextElement struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0; // UnityEngine.Texture2D struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4; // UnityEngine.UIElements.UIR.TextureBlitter struct TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7; // UnityEngine.UIElements.TextureRegistry struct TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B; // UnityEngine.UIElements.TimeMsFunction struct TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B; // UnityEngine.UIElements.TimerEventScheduler struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862; // System.Type struct Type_t; // UnityEngine.UIElements.UxmlAttributeDescription struct UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2; // UnityEngine.UIElements.UxmlBoolAttributeDescription struct UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE; // UnityEngine.UIElements.UxmlIntAttributeDescription struct UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4; // UnityEngine.UIElements.UxmlStringAttributeDescription struct UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF; // UnityEngine.UIElements.UxmlTypeRestriction struct UxmlTypeRestriction_t2C4CE1ED76502CDF80010880E058AF0582910A92; // UnityEngine.UIElements.VectorImage struct VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC; // UnityEngine.UIElements.VisualElement struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115; // UnityEngine.UIElements.VisualElementAnimationSystem struct VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7; // UnityEngine.UIElements.VisualElementFocusChangeDirection struct VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C; // UnityEngine.UIElements.VisualElementFocusChangeTarget struct VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD; // UnityEngine.UIElements.VisualElementFocusRing struct VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3; // UnityEngine.UIElements.VisualTreeAsset struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB; // UnityEngine.UIElements.VisualTreeStyleUpdater struct VisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68; // UnityEngine.UIElements.VisualTreeStyleUpdaterTraversal struct VisualTreeStyleUpdaterTraversal_t7CCC9D063FAA493F39CCB1510F72CBCBD1BAB377; // UnityEngine.UIElements.VisualTreeTransformClipUpdater struct VisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67; // UnityEngine.UIElements.VisualTreeUpdater struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // UnityEngine.Yoga.YogaConfig struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345; // UnityEngine.Yoga.YogaNode struct YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA; // UnityEngine.UIElements.UIR.Allocator2D/Row struct Row_t5CAF04F94A4359C08ADDBA867B0817101F351999; // UnityEngine.UIElements.BindableElement/UxmlFactory struct UxmlFactory_t1DB561BFFA7E2E3836F7AB008BCE7B6119542F33; // UnityEngine.UIElements.BindableElement/UxmlTraits struct UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172; // UnityEngine.UIElements.DefaultEventSystem/<>c struct U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9; // UnityEngine.UIElements.DefaultEventSystem/IInput struct IInput_t5B034697E44657CF7B5B7F4CA12E3653B3BBAFC3; // UnityEngine.UIElements.DefaultEventSystem/Input struct Input_tC023700B4164019B29E6EFE6F9E6E5DEF0BAF0BA; // UnityEngine.UIElements.DefaultEventSystem/NoInput struct NoInput_tB2381D0103606E3984C911BDF45F12083435A21D; // UnityEngine.UIElements.DynamicAtlas/TextureInfo struct TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F; // UnityEngine.Font/FontTextureRebuildCallback struct FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1; // UnityEngine.GUILayoutUtility/LayoutCache struct LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values struct Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground struct ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor struct ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat struct ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont struct ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition struct ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt struct ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength struct ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate struct ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale struct ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow struct ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin struct ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate struct ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B; // UnityEngine.UIElements.StyleSheets.StylePropertyReader/GetCursorIdFunction struct GetCursorIdFunction_tB1504572DE66050EB344B89BEDCB49E880152CF1; // UnityEngine.UIElements.TemplateContainer/UxmlFactory struct UxmlFactory_t5721E550FC36B9FB25920C8A1BF3ED0690EAD095; // UnityEngine.UIElements.TemplateContainer/UxmlTraits struct UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6; // UnityEngine.UIElements.TextElement/UxmlFactory struct UxmlFactory_tAECA77E800F1C8D8B4750E8DE5B030FB6BC0E218; // UnityEngine.UIElements.TextElement/UxmlTraits struct UxmlTraits_t8F9F8E46DE4A7DDD1380F89F35F670433ADFF3FC; // UnityEngine.UIElements.VisualElement/CustomStyleAccess struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1; // UnityEngine.UIElements.VisualElement/TypeData struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A; // UnityEngine.UIElements.VisualElement/UxmlTraits struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B; // UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord struct FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D; // UnityEngine.UIElements.VisualTreeStyleUpdaterTraversal/<>c struct U3CU3Ec_tD85AC599FA8D7FFDFB50F5FD2F62908FDEB78B2C; // UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray struct UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449; // UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer struct EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A; IL2CPP_EXTERN_C RuntimeClass* Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t28FBAE79F893547A07D226BAE7DAF27C4568F7C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tE18332F29E8B0E081617E38B4A34F0089F310E53_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t1E2D8261CC6BDF2163403F266C5410F5D18FABE0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ComputedTransitionUtils_tC9191F301DCE1CB02C3FFC174E651E14204F1C7A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CursorManager_tB28ED880450C37A0831769315A14D246F5A2E060_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t37F557505423C20CABB84F18ADA6FE019FD5411F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tBFA6A92ADF404217ADC6287258F898AC33533339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDAF0CFE0CE67D29980B6E16E14494B452AA7C270_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DynamicAtlas_tA1A51ADBE1DBFD82F6D52D5CA4D09D82F89678A8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t06692607D03E5B5F275B33C5EACCE075D1C2AB05_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t537183F3C55578258C5DAF68E510087AD97961A7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tDFA2360CDCE536A2DE7FA625C0295865A67D40B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tF39C691B05308835A836D33741E4656809B44C3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t21422914E40DBAC34FD54D39D995588A4B7E7D63_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_4_t0E2E2E47320C72FA06D4AFD7F4375C61BD17084B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_4_tA5546A90ACF2FBA116ECAAEB518084F68FC2040A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBindable_tC033D86A91EFC1DB9A0DD25E218A1D6E0C4D306A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IInput_t5B034697E44657CF7B5B7F4CA12E3653B3BBAFC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IScheduler_t70B716998476DDF4EED6DE7A0DA997AB9F9C75CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InitialStyle_tB45723AD8BBFFB1A576F025D76BB814D983B19FF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Input_tC023700B4164019B29E6EFE6F9E6E5DEF0BAF0BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LinkedPool_1_tC5395F299B7B9824571198DF9F00CAC6033CD7D6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t365205E6BE687FCF41975C16741DD9C303C1C269_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t491E344573B9D6F61E36AF56132B7412453928C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t70EE7982F45810D4B024CF720D910E67974A3094_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t96E9133B70FB6765E6B138E810D33E18901715DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tA1D3D4FCA4CFF8E02845F48D747A4C704D4C9CAE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NoInput_tB2381D0103606E3984C911BDF45F12083435A21D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t006A020DCEB7871AAAA93FEE358DCC0499FD14F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RepaintData_t90534752135661579EC254884F550545D001B5EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StyleCache_tC05503D1856687B724FC44ED0146CC105C465445_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StyleMatchingContext_tF3A1D3569F8EEB1C549CEAE4998224A60A0A5D26_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StylePropertyReader_tA960AF3A0C411045E92E04E997D7EB2EF1B7552A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StylePropertyUtil_t11D3E3E4F0B51C0D07736B9FCADFC78C99AA0190_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tD85AC599FA8D7FFDFB50F5FD2F62908FDEB78B2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementListPool_tB82E686FE29EA30D8CEDF6FF352FD1B7E7A30095_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementStyleSheetSet_t01465769E0D9109A677300311A7058701873A23B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementUtils_t40D4F58B1AA48524658BD0DC09E4CCD7DAAF722C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualTreeStyleUpdaterTraversal_t7CCC9D063FAA493F39CCB1510F72CBCBD1BAB377_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral0E7759F4A91EDFC77F380FE08324F86272C8CA2B; IL2CPP_EXTERN_C String_t* _stringLiteral0FD7778C505E2DD5B768867C52EF1557D3D121B2; IL2CPP_EXTERN_C String_t* _stringLiteral11394427B8EFDE0EFBFD1FF78CB0A1EB88924797; IL2CPP_EXTERN_C String_t* _stringLiteral17CD413977AD843771733C48B6EA198129F49690; IL2CPP_EXTERN_C String_t* _stringLiteral190CDBBC7377A308B78E27EF91319FD2DA386895; IL2CPP_EXTERN_C String_t* _stringLiteral1B958738DC162BEB9B0D85C80B39A3034A624BA2; IL2CPP_EXTERN_C String_t* _stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A; IL2CPP_EXTERN_C String_t* _stringLiteral27F4E38F96E25FC6A303C61D7E1304CAF64B7541; IL2CPP_EXTERN_C String_t* _stringLiteral29784256C60A93E08D09354C1B895C1F5D2C22EF; IL2CPP_EXTERN_C String_t* _stringLiteral2AB04DC99CA2F296C65DE3AB17EA964A7692E3DB; IL2CPP_EXTERN_C String_t* _stringLiteral35BFF0C070809528BCAE19C360FEF7D619AE8EF3; IL2CPP_EXTERN_C String_t* _stringLiteral36282FAC116D9FD6B37CC425310E1A8510F08A53; IL2CPP_EXTERN_C String_t* _stringLiteral388C340780C6B11AF689CDE7CCEB8C732DAB9C23; IL2CPP_EXTERN_C String_t* _stringLiteral508FC97525146E8F2964FF05AC4A7C131CB1D259; IL2CPP_EXTERN_C String_t* _stringLiteral5A8F45F1C79E40889C90528CFD4D921EE9507784; IL2CPP_EXTERN_C String_t* _stringLiteral5E1B590B41B4F135A37478AC97F37498C7B39E08; IL2CPP_EXTERN_C String_t* _stringLiteral6DCFB4874BCC2C275EBAAF2C56BFC6B9A4CE0002; IL2CPP_EXTERN_C String_t* _stringLiteral70A8AF0511C1A25EF3B28D18A927B18416F2AE7D; IL2CPP_EXTERN_C String_t* _stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E; IL2CPP_EXTERN_C String_t* _stringLiteral8172BAC95C9A5BE9FAE6423959034DB348689962; IL2CPP_EXTERN_C String_t* _stringLiteral82D479D59A3FF3B83E927DFA871979AE5B979CA8; IL2CPP_EXTERN_C String_t* _stringLiteral91DDC08CA2894E07E790A983587FFE6E407AD261; IL2CPP_EXTERN_C String_t* _stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674; IL2CPP_EXTERN_C String_t* _stringLiteral9574F1C142C4873944B93FEF7DD2308ED4944962; IL2CPP_EXTERN_C String_t* _stringLiteral9A50CCB79C7AA9C930AA7DF481024F8F46C38A91; IL2CPP_EXTERN_C String_t* _stringLiteralA01E7667E3AD57BE432A894D11E8333E4CDAD6D5; IL2CPP_EXTERN_C String_t* _stringLiteralB04E6A757168B91383DCF5A72C81738955D0E6DA; IL2CPP_EXTERN_C String_t* _stringLiteralB08282527E732747047D6E80804E4EA411493141; IL2CPP_EXTERN_C String_t* _stringLiteralB7168CD7985145F336F1450B86CAD1C5B051A26E; IL2CPP_EXTERN_C String_t* _stringLiteralBFCC6EE94F1B7AA05A04750903E25F93A7188AE0; IL2CPP_EXTERN_C String_t* _stringLiteralC6A2C8F23127EDB1AE4B051FF921A2BA502DAD9B; IL2CPP_EXTERN_C String_t* _stringLiteralCA4C37D993E9DE9D6A9ACD0A4394D625D239626D; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDA58175B1477CDD80A1CD74D2443D48978E77422; IL2CPP_EXTERN_C String_t* _stringLiteralE613B93BA754382742DF7C7D4EF3E5B7C699F600; IL2CPP_EXTERN_C String_t* _stringLiteralF3D5D234CF68393E1285D153D0F7F08A480D0B60; IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D; IL2CPP_EXTERN_C String_t* _stringLiteralF82E77163FA1DA3FC88318F036C4A14ABDF6C33F; IL2CPP_EXTERN_C String_t* _stringLiteralFC9BB82B7553FFE051C4F73A651CAC7D04CB6EAB; IL2CPP_EXTERN_C String_t* _stringLiteralFE3CDBE9D3C244138D4F64C1BEB914490F7E7BBD; IL2CPP_EXTERN_C String_t* _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisNavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E_m6F61FF46A1FC34A4F812FE1C62B4292F6F569B32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisNavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_m7E875C04D0CAF6D09162404E056A982D2361AA56_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisNavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1_mE3AEBEE052ADD6289D44E50FBAB102AF11F8F443_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m5F24D57398BF01859BD80580BAF3F5A74D44358D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisNavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E_mE14CF5B988D9BE8D4E2670C901AA70E78FE05BAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisNavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_mB87A2992294E355FE6F4B509D2E4DD60643CC81A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisNavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1_mF03ECCD9D6E8568B85FBFDADD785E961591541E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ChangeEvent_1_GetPooled_mF8F78E2DFC01AE418EFCD2AC9A74536DADCC1D83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnTimer_m0DB36FB7BE7DEED6ABCEF027453E7DB5A5F1679C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_U3CSimulateSingleClickU3Eb__43_0_mFA30E64FB9FEE2B9A509FD6FDC0641DCCEA28C04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DefaultEventSystem_SendFocusBasedEvent_TisDefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_m724784C949FD4F4F84B8FF63E8CF0C942FCDC972_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DefaultEventSystem_SendPositionBasedEvent_TisDefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_m80B2D7EA4D57E987F8CB003DA8B243EC2A325356_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DefaultEventSystem_SendPositionBasedEvent_TisTouch_t03E51455ED508492B3F278903A0114FA0E87B417_mC1CEF0DC22EC0FFD864E1FC5A85F939462BC37C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m5AA55080E929801814A2AED67C1EACB487D558FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m78C9AC85869C06425887CA940EFEFD6207DF4DC2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m7C62E9319DFF989F9298F29252B186A0319CC603_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m81D51C6A91B208CD76088FDCEC562F6E60764D6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m894EED4B920A7E036F5429A657DF12B0FDD2B11F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m1E790C2A22E975110DB700CA347DB477F45AD1C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m921B1816FDB9DE9430319093C9DE2A6243262F69_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mC6AD8982CA3D110E6245DB0643FACB0CD5029E5B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mCD43812843791080F89B79C59B2E16F40B82DEE6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m21A97D26BB4F4E2AA6C6D354ED00CE809D04A899_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m4DAC77901642EE686ABF55AAD8F67A4596B71933_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m93F01F1B65530458C3D84CE06F304BE82F37873A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisIValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_m7BE88426837502AF975B5CBB79C61817A2AF7179_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m291410D5F9CB92C2F08939877756F392076F9E3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m416CF8D4D2AD5EE845327B4AC919FAE0EA4C9A9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4A64BFA5057E379EF80557690A9F84DB8C0DC380_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE8A61DE28C0B419DC46A7E482F53AD8E4C110D71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3AD1122A7AE2E179AD53B3B1D5EAF8BDB82F73BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m40D8670842DA5800C3444B65C2D4D15A274DC5B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8DCF64B4B5AF3403887135F92831A8AA2860B581_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mFFFB52936E43BDEA0BEA6256737F9F2170E1EF58_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m147A69287974487C69FC23BDDD7E7EBF9C7653BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m52EEE738BA2DBEE07AF31967D59E0AE58696DCB8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mAD71FBE1E11F8D8E113EABC817736E4C52C489B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mEFB5475B24F1D9A32001AFA4D24E100190A30CC5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_m16B043B947D467A698E5BCBFA7ED9771032A6178_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_mB416E612CF5DF00141878F67290CCF47A257028B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_m017D73629E8ECF9987471A9CB8FAC457253C37AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_m56C40A562C1AF7FE9338B9606590AF1D9729DFAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_mE3FD65DA4C4805F105F0E53C08DC9A37842C66F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mA77A33D9F77CA0784C4A5CD3C6E8400AC11AEB2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_GetEnumerator_mA29A05BFE8663CB18D9F1D8C3D32BDEE9422F679_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m1EF60485B3C694B2264B65E4532B9AA823C9294A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_actionKey_m41727377DE6FBE0D53A28DC0C639254BA059BC90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnKeyDown_mD49C1559E0A4B1DB2EA6952C1B972AF55E213A2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnNavigationCancel_m139064EB0E53BEF3EE575AA66B0452986662238B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnNavigationMove_m474F212F38AA7DA72A7BBFF92709718B6640D712_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnNavigationSubmit_mE179DC16B0BFB4903468E5E00EF41F977EA24E66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedPoolItem_1__ctor_mD9AD44367581E2DDCF44C3E4A05C17888CE099A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedPool_1__ctor_mACEF8252BCB8C660D5E330ED1D08B60AE95B1740_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3C83E75B614E81ACCA3C10CAF32408B4DB651780_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m2AAF9E701399D94DF3735A99591C29E5099EF150_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m693293F9C11FFD2D583A0722818DA5AEE76AAE50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mDAF9870CFC71F28FB95E39E6FB8DAA87C97BABDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m7E66CC8F2A81FA9B093B1C62CFB6DAD41B05E48C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m0C114D820AC2D6FF3B90A7BF84EC8257BA93C06B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m5E55416AB4F1C7A5BA700264BBB8692D4DE3C674_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mF5D9E096002B7090B760693DAB28D2AB9C6D92F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_mFD75BDD260958701787D5B99FB1B53E02BD453AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mC6A86B98D885D5F3A1C26B70C001874435FD0E76_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m714289BDFA284DC5095F3684CE05F71824F32862_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mD3B66520B2F25989200A0CED9AA786045DED2201_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m020E56BAD0BB49CFE3FCE3DB934D337DF2A9BDE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m47C984B9AA0A8275E583ADDB0EB2FB2990A4D30E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4F0233457AF4EB4A3440E7DF64AEB37FA4FB8BCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5EE3096A28CB4C1C1D2D8161243246FB7AEDD36E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m90D257D81F60744827FBC0735C4BA1038EA92B1E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF0C1921461493490BF6F2AF6CA86D16BC59E327B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Capacity_m08A615436DC3E7BFE7EB28C4ABEB6F2E206DFC0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m1558721197A3A4276E9F04272F90E6E0A151EE46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m24E760F4F6A287D54A56CD3E9450AD902F652E2F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m455005DED01B6E5D536CA667069173BC5464E2F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mBB70B3890705AA69A1BBCEFCA66C9BFA8D559AC3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF5AD649DC34CEE11565F944D25226AA88D945D43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Capacity_m87135B480D6FAF4B38D7F9395B9F38BA4DD0070C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_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* ObjectPool_1_Get_m16A1DF984C6B9C400A558D142660931D99416C93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Get_m667463FE9900F821038BDF505AD5CCE63CE76B8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Release_m119D069CEADAD46DC4469668B5FC65F42DE6EE96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Release_m971AD50C887D09F9A60E99CD7637A47F61160146_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_mA1E177120AF12CEE3415C46BD3A1D03A1BD10034_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_mEEC5EE1FF93D90041D7D42A3B257DDB41AECF186_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_m9A374DF0D549BE03C87F43801FF49F06B3B62CF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mA34D7C18EF23C20D4EEF6ECBA1D244E450FE1269_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mB59248109D193F686FEB4522CACAAE4D07362B0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mECADB036D8A3E61FEE56F40360A9E073056CDB15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m2EEAE3E415FD9C11387BCAD93E21E0EA40C166C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m9AABDA5AC3E744E03AA461C2F3A8DF0A750057DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_mC9C3C6D10B1C532AFBDBD8B981E1E27545222C23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_mD2168447A7076CEF52BEE2DC5A39AE5E25C9FCAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_mDDAB4EA55AA38ECD0BE44988C58F9BD13B66FEC5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StyleDataRef_1_GetHashCode_mAEEA82C794CABD2A9FE60FE5B06BABE7C7122277_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34_m3AA63687C84FE888B431AC60F7EDE46679F9C363_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904_mDB2355711EE15D844723B2B521C5178F4902A6BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2_m69BD3101A74B41321546E2751DF646D4EB610CB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7_m980E27E4E6C02926D25BFFDEF0DF7B86D2C4B566_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4_m2DB4B8CDC30AEA7F69E9AF175DEEEADF256997EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367_m46F0FADDB445430FB28DA5D1A5E4F6884D9A0D3A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915_m1D6B301065FC8678565A1A179ED187E6D7DBAF0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63_m4D2646D45B81A1B5C91B8B7E7080F6E36A570778_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A_m5D936E7D89B0490962316F11C3199C376E575A7D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C_m2DD45E28E05067361C23AF6459FC26220732E34C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F_m02C7F5437BD38F23BD0D7959FB0A6737F7F5E07C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B_m9D347157570FF4DC0BC1A96EB5DC3A57DEA15B16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m4681675678ACD0B638F1DE5B61E1FB551007A685_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mA6698B8B343450BE774AAFACE5329339B620513C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisFontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_m8E4D16083B78CFD9ACB4C401F281E9677C1BE232_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m22AF562422138D87A2E30829811FEA3C1A62595F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB97CADACE8C091B57839011BE99CE92EC7A16744_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisLength_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256_m35F10294C0F650E36D89179C9EBDD14F1BED06F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisRotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_mF48ED781CBE6F243450F08A3CA66A160BA853FF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisScale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_mCA0F0ADA23085C05A6E20E52FAC0B7FE37E5F40F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7DA7B0363D2265A7C217459845364E86F6D093AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisTextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_mAF55C9EB61C8081E34D6DA31BB0B7749F7120DB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisTransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502_m6DA3A36592C69F444EC66E150A00D1E9D0D2E74F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisTranslate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_m0BCC34376C9BBAEB7315E9F98CF2FF0578E354B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TextElement_OnGenerateVisualContent_mB4B04A8CEE610D66401684E7F293C0C41481A9A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TextElement_OnGeometryChanged_m315369635F1BD57A1E1A1B7E0C64B020B1C68B81_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TextureInfo_Create_m5CFA6A8D68AE6256D0478A1A558860EE161A75C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TextureInfo_Reset_m5C41D1BED360BEA8402B904F2E95D9D6CE1BA53A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CProcessMatchedRulesU3Eb__24_0_m563FEBA7F7D1D41F9ADA0F60A64777FD94653FD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CProcessTouchEventsU3Eb__30_0_m60A1374AB62A926384CC930178A034020F1BC78E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendIMGUIEventsU3Eb__23_0_m15C23CA96B115A6B551B61A9386874A2CC5709BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendIMGUIEventsU3Eb__23_1_mB1193C108B652CED2F6610A3F1E9582506195827_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendIMGUIEventsU3Eb__23_2_m464AA1D2888EB381FB483B8C3871D32E252EED07_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendInputEventsU3Eb__24_0_m5E17EA3D2907491693C19635B9FA1A864A801B3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendInputEventsU3Eb__24_1_m222E33C91CF42711A0FBB75D9C42071779B7333D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendInputEventsU3Eb__24_2_m00767020ADE18C377010B75B01EDE043F8874856_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__41_0_mFEC790F254F6D051E604AD09325D1BC338604C88_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m1EAD5B8148AC5467CF2774840E258D93AF49C9BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_mB672680ACFBD52DB0DA168603F12DDE51C07C75A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesColor_IsSame_m0F902ACD681D6809CEAD28F560A481689CC82E9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesDiscrete_1__ctor_m0E4BD2599AB0377656A8065339C19DB6E099FC27_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesDiscrete_1__ctor_mA5E3A335CD04AB1496F9C42E7BDA9D6E1551BB66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesDiscrete_1__ctor_mFDAFF02FCBE6E8293FD5C7BE340D296D32DF674F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesFloat_IsSame_m13A1F5F28A1BC71D2BEA07DB4F1BC27F7BC24809_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesInt_IsSame_m0BA28D0C5011480BE691A04C6717979B59FD5778_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesLength_IsSame_m1CE2286D0CFDD28167E40403F45C40958964EFF6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesRotate_IsSame_m68450D57ACE7A544B50126120BABB410658B8887_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesScale_IsSame_m2ABB12E9EB1701498D672B9DC5D2E24375818242_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesTextShadow_IsSame_m12A6EF005AB770EFA394D733C10782D0CD147CB8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesTransformOrigin_IsSame_m09C19414464EE548C1E6A6EC5562670AAFE4AAA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValuesTranslate_IsSame_m2B3B9BE0D5E39F9BD9AB5EC22DAE697A71F30C3B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m14E59C062E826E30FCDC4DEF3E693F23E4929089_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m516D4E8920F3D100B223855A347BD87B06985666_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m5CE5F1D9F61E3AF72965AA1A75B51EED016BD774_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m6C0823FA2DEF3358FC7605F415298C25AB5A0792_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m93E0C4785A19CAE7F9E6AF562B3AC151F93C467E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m94B69C26ECEB0D2B15FE237DDF63030D0BC0B910_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_mDBBD3320F73277C566561C33397418535A8371EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_mF2E3EEC44174E391276F9E3F4906DF800C856EA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_mFFEF26A8BD0E03F73FCD1306CBAD763A96908EC3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementExtensions_LocalToWorld_mDDE4378293C3CC8A99E8EA2AA0984BBF30C8FDCD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementExtensions_WorldToLocal_m6F92CEAE8BF73F6729262B535191AD1437DC1A9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementExtensions_WorldToLocal_m9AB4674D3198B2C87E9D53DB56077BA769059EF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementFocusRing_FocusRingSort_m3B38EE0A757FFC2CADAEE6FAC7CBD90B02E91B40_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementFocusRing_GetFocusChangeDirection_m040BA490720263A6F4D9C8666F77F0AF4F30D587_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementStyleSheetSet_Add_mE5653A810724A67573079E2B4D39FFB260C38214_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualElementStyleSheetSet_Remove_m6F1AF09F50314D09209524C3418810C890B8F7B2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeStyleUpdaterTraversal_OnProcessMatchResult_mC57AB45A2DB99CB72CE7D7F78A5E35653EFBE33B_RuntimeMethod_var; struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com; struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D; struct StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0; struct StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB; struct StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389; struct StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043; struct StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9; struct StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876; struct StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386; struct StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F; struct StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E; struct StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263; struct StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC; struct StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822; struct TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994; struct TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077; struct TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9; struct TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A; struct TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269; struct TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0; struct TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14; struct TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E; struct TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3; struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct GradientSettingsU5BU5D_t5A316EDE81269563C087800A519341276F98AF9C; struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F; struct ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct SelectorMatchRecordU5BU5D_t6033C70B62D6E4C7261F40F64F75070577947A19; struct StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783; struct StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359; struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE; struct UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83; struct VectorImageVertexU5BU5D_tA19C37074824265F1A5684A6F2C156559455C1C4; struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF; 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.Comparer`1 struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80 : public RuntimeObject { }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBFA6A92ADF404217ADC6287258F898AC33533339 : 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_t20232555B01299E50C6D0216F01265BFAE9192BD* ____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_t7032C42BDB9F81A00537C262F53859F054515A62* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t610505C1353EB2B43336B80F2791B3368126589C* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tDAF0CFE0CE67D29980B6E16E14494B452AA7C270 : 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_tD309F552B0A24641B68AB256A56D6957D257D1F1* ____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_t02AA3851B1EDACE86C778A221321A359FA3441D4* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t885AA1B6C959F1BB0EB2CBBE91A8773264DBA655* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t37F557505423C20CABB84F18ADA6FE019FD5411F : 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_t05E52844511353E4ABF08A5014CE9794F2BC7FB2* ____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_tAFB9383D0D5BB1B6F60638686806B2F9E2FF6F65* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t11DEEA44D63ED0917BD47EFD3C51372B0EA9E1BF* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tED98F9DEB20653ED194C08F6C90D3752C3EDEA28 : 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_t5C6BE3F8D8C9F5DBCDEF6446DF86F557102A5F67* ____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_t85D7EE0BF2C0CFEF0B29BD162EBF6D7932A18524* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t95D84B4301FFC2CEAA9EBB93DE72CFC9CE2995B2* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF : 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_tF9A333B05D89C80863205975D040FE0EF8B5D19B* ____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_tC5B239E49B6B3F63B394F906A069240465B098DF* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t06CDA99DB645BD0BA87E9F06322972BF06B8B0B1* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9BEC34FFAABF80FD27E35B9955364F9D176F44EA : 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_t7F98B69A7E03C7962E8464AC964AF60FAD664681* ____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_tF6D68C9DEFB5EE51E16CCE2C8FA4B432F4629265* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_tBFB44848CD0102BAD045541C44604965E5A35EA2* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7 : 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_t524C33EA8D08013B8734724ABCA925485CF3B799* ____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_tAE1CD1CE327D07F072532A89E6854F2C33EB014A* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t04D5F77EBC72D81BB7FE7199D6C9DC65DEB60064* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tC07547303D7A0CFE94CCC1B82240C03FD8850DD4 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tF5B9124CEB160EFC53E943AA29271854DB5D5E8E : public RuntimeObject { }; // System.Collections.Generic.HashSet`1 struct HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE : public RuntimeObject { // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t056AB4465CFC0A3D07F7C0975B7EE25ED67AB270* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_14; }; // System.Collections.Generic.HashSet`1 struct HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB : public RuntimeObject { // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t94CA178993B9FC71F63E131258D20773C4BC2048* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_14; }; // UnityEngine.UIElements.UIR.LinkedPoolItem`1 struct LinkedPoolItem_1_tEE25C8B557C971B237ECBF0BA28C57C48372D9EF : public RuntimeObject { // T UnityEngine.UIElements.UIR.LinkedPoolItem`1::poolNext TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F* ___poolNext_0; }; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_tC5395F299B7B9824571198DF9F00CAC6033CD7D6 : public RuntimeObject { // System.Func`1 UnityEngine.UIElements.UIR.LinkedPool`1::m_CreateFunc Func_1_t21422914E40DBAC34FD54D39D995588A4B7E7D63* ___m_CreateFunc_0; // System.Action`1 UnityEngine.UIElements.UIR.LinkedPool`1::m_ResetAction Action_1_t28FBAE79F893547A07D226BAE7DAF27C4568F7C9* ___m_ResetAction_1; // System.Int32 UnityEngine.UIElements.UIR.LinkedPool`1::m_Limit int32_t ___m_Limit_2; // T UnityEngine.UIElements.UIR.LinkedPool`1::m_PoolFirst TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F* ___m_PoolFirst_3; // System.Int32 UnityEngine.UIElements.UIR.LinkedPool`1::k__BackingField int32_t ___U3CCountU3Ek__BackingField_4; }; // System.Collections.Generic.List`1 struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items IValueAnimationUpdateU5BU5D_t250909B263EE1BB62A80F2449EAD3709E83C5C78* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_tA1D3D4FCA4CFF8E02845F48D747A4C704D4C9CAE : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items SelectorMatchRecordU5BU5D_t6033C70B62D6E4C7261F40F64F75070577947A19* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_t365205E6BE687FCF41975C16741DD9C303C1C269 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items StyleSheetU5BU5D_tFFAA0F92657246FFBFE954290B305CCCBA9DD1A7* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_t491E344573B9D6F61E36AF56132B7412453928C9 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ValuesU5BU5D_t5332999C48416329B2A447FCD8C71113DDB459EA* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items AttributeOverrideU5BU5D_t4D2E0B93EF3A1A1EB58AC1F48E6CFE20A0EA27E8* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.List`1 struct List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items FocusRingRecordU5BU5D_tEF4D674D6630E0BABDC146E3DA39D58EEE0056F6* ____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; }; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t006A020DCEB7871AAAA93FEE358DCC0499FD14F0 : public RuntimeObject { // System.Collections.Generic.Stack`1 UnityEngine.UIElements.ObjectPool`1::m_Stack Stack_1_t89D5688AF7850C61B3DF8B5BED042DEBFA7AC9BC* ___m_Stack_0; // System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize int32_t ___m_MaxSize_1; }; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E : public RuntimeObject { // System.Collections.Generic.Stack`1 UnityEngine.UIElements.ObjectPool`1::m_Stack Stack_1_tED2C2A36F6C3F66D1AE3ECC4B99177D661C08F11* ___m_Stack_0; // System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize int32_t ___m_MaxSize_1; }; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A : public RuntimeObject { // TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* ___m_Traits_0; }; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933 : public RuntimeObject { // TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6* ___m_Traits_0; }; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tA0A97C5E51045F69E0AB6E6EDDD9EBB7BBDB30C9 : public RuntimeObject { // TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits UxmlTraits_t8F9F8E46DE4A7DDD1380F89F35F670433ADFF3FC* ___m_Traits_0; }; // UnityEngine.UIElements.AlignmentUtils struct AlignmentUtils_tA8FE0A2C3873180C610750E1102A78F0A16B8660 : public RuntimeObject { }; // UnityEngine.UIElements.AtlasBase struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC : public RuntimeObject { // UnityEngine.UIElements.TextureRegistry UnityEngine.UIElements.AtlasBase::textureRegistry TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B* ___textureRegistry_0; }; // UnityEngine.UIElements.BaseVisualTreeUpdater struct BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41 : public RuntimeObject { // System.Action`1 UnityEngine.UIElements.BaseVisualTreeUpdater::panelChanged Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelChanged_0; // UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.BaseVisualTreeUpdater::m_Panel BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___m_Panel_1; }; // UnityEngine.UIElements.CallbackEventHandler struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject { // UnityEngine.UIElements.EventCallbackRegistry UnityEngine.UIElements.CallbackEventHandler::m_CallbackRegistry EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry_0; }; // UnityEngine.UIElements.ContextualMenuManager struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B : public RuntimeObject { // System.Boolean UnityEngine.UIElements.ContextualMenuManager::k__BackingField bool ___U3CdisplayMenuHandledOSXU3Ek__BackingField_0; }; // UnityEngine.UIElements.CursorManager struct CursorManager_tB28ED880450C37A0831769315A14D246F5A2E060 : public RuntimeObject { // System.Boolean UnityEngine.UIElements.CursorManager::k__BackingField bool ___U3CisCursorOverridenU3Ek__BackingField_0; }; // UnityEngine.UIElements.DefaultGroupManager struct DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.DefaultGroupManager::m_GroupOptions List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* ___m_GroupOptions_0; // UnityEngine.UIElements.IGroupBoxOption UnityEngine.UIElements.DefaultGroupManager::m_SelectedOption RuntimeObject* ___m_SelectedOption_1; }; // UnityEngine.UIElements.ElementUnderPointer struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904 : public RuntimeObject { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.ElementUnderPointer::m_PendingTopElementUnderPointer VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___m_PendingTopElementUnderPointer_0; // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.ElementUnderPointer::m_TopElementUnderPointer VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___m_TopElementUnderPointer_1; // UnityEngine.UIElements.IPointerEvent[] UnityEngine.UIElements.ElementUnderPointer::m_TriggerPointerEvent IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* ___m_TriggerPointerEvent_2; // UnityEngine.UIElements.IMouseEvent[] UnityEngine.UIElements.ElementUnderPointer::m_TriggerMouseEvent IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* ___m_TriggerMouseEvent_3; // UnityEngine.Vector2[] UnityEngine.UIElements.ElementUnderPointer::m_PickingPointerPositions Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_PickingPointerPositions_4; // System.Boolean[] UnityEngine.UIElements.ElementUnderPointer::m_IsPickingPointerTemporaries BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_IsPickingPointerTemporaries_5; }; // UnityEngine.UIElements.EventDispatcher struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398 : public RuntimeObject { // UnityEngine.UIElements.ClickDetector UnityEngine.UIElements.EventDispatcher::m_ClickDetector ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* ___m_ClickDetector_0; // System.Collections.Generic.List`1 UnityEngine.UIElements.EventDispatcher::m_DispatchingStrategies List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* ___m_DispatchingStrategies_1; // System.Collections.Generic.Queue`1 UnityEngine.UIElements.EventDispatcher::m_Queue Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_3; // UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.EventDispatcher::k__BackingField PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* ___U3CpointerStateU3Ek__BackingField_4; // System.UInt32 UnityEngine.UIElements.EventDispatcher::m_GateCount uint32_t ___m_GateCount_5; // System.Collections.Generic.Stack`1 UnityEngine.UIElements.EventDispatcher::m_DispatchContexts Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* ___m_DispatchContexts_6; // System.Boolean UnityEngine.UIElements.EventDispatcher::m_Immediate bool ___m_Immediate_8; // System.Boolean UnityEngine.UIElements.EventDispatcher::k__BackingField bool ___U3CprocessingEventsU3Ek__BackingField_9; }; // UnityEngine.UIElements.FocusChangeDirection struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF : public RuntimeObject { // System.Int32 UnityEngine.UIElements.FocusChangeDirection::m_Value int32_t ___m_Value_3; }; // UnityEngine.UIElements.FocusController struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A : public RuntimeObject { // UnityEngine.UIElements.IFocusRing UnityEngine.UIElements.FocusController::k__BackingField RuntimeObject* ___U3CfocusRingU3Ek__BackingField_0; // System.Collections.Generic.List`1 UnityEngine.UIElements.FocusController::m_FocusedElements List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ___m_FocusedElements_1; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastFocusedElement Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastFocusedElement_2; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastPendingFocusedElement Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastPendingFocusedElement_3; // System.Int32 UnityEngine.UIElements.FocusController::m_PendingFocusCount int32_t ___m_PendingFocusCount_4; // System.Int32 UnityEngine.UIElements.FocusController::k__BackingField int32_t ___U3CimguiKeyboardControlU3Ek__BackingField_5; }; // UnityEngine.UIElements.StyleSheets.HierarchyTraversal struct HierarchyTraversal_t89B1D4664C1C066FEED9B372488A3F751CB6FE7D : public RuntimeObject { }; // UnityEngine.UIElements.Manipulator struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE : public RuntimeObject { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Manipulator::m_Target VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Target_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // UnityEngine.UIElements.MeshGenerationContext struct MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62 : public RuntimeObject { // UnityEngine.UIElements.IStylePainter UnityEngine.UIElements.MeshGenerationContext::painter RuntimeObject* ___painter_0; }; // UnityEngine.UIElements.PointerCaptureHelper struct PointerCaptureHelper_tFF289BA2021DBFF9F7AC6E1B043C876DDFAE233B : public RuntimeObject { }; // UnityEngine.UIElements.PointerDispatchState struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A : public RuntimeObject { // UnityEngine.UIElements.IEventHandler[] UnityEngine.UIElements.PointerDispatchState::m_PendingPointerCapture IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PendingPointerCapture_0; // UnityEngine.UIElements.IEventHandler[] UnityEngine.UIElements.PointerDispatchState::m_PointerCapture IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PointerCapture_1; // System.Boolean[] UnityEngine.UIElements.PointerDispatchState::m_ShouldSendCompatibilityMouseEvents BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_ShouldSendCompatibilityMouseEvents_2; }; // UnityEngine.UIElements.PointerId struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C : public RuntimeObject { }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; // UnityEngine.UIElements.StyleCache struct StyleCache_tC05503D1856687B724FC44ED0146CC105C465445 : public RuntimeObject { }; // UnityEngine.UIElements.StyleComplexSelector struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD : public RuntimeObject { // System.Int32 UnityEngine.UIElements.StyleComplexSelector::m_Specificity int32_t ___m_Specificity_0; // UnityEngine.UIElements.StyleRule UnityEngine.UIElements.StyleComplexSelector::k__BackingField StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* ___U3CruleU3Ek__BackingField_1; // UnityEngine.UIElements.StyleSelector[] UnityEngine.UIElements.StyleComplexSelector::m_Selectors StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* ___m_Selectors_2; // System.Int32 UnityEngine.UIElements.StyleComplexSelector::ruleIndex int32_t ___ruleIndex_3; // UnityEngine.UIElements.StyleComplexSelector UnityEngine.UIElements.StyleComplexSelector::nextInTable StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* ___nextInTable_4; // System.Int32 UnityEngine.UIElements.StyleComplexSelector::orderInStyleSheet int32_t ___orderInStyleSheet_5; }; // UnityEngine.UIElements.StyleMatchingContext struct StyleMatchingContext_tF3A1D3569F8EEB1C549CEAE4998224A60A0A5D26 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.StyleMatchingContext::m_StyleSheetStack List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___m_StyleSheetStack_0; // UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.StyleMatchingContext::variableContext StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___variableContext_1; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.StyleMatchingContext::currentElement VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___currentElement_2; // System.Action`2 UnityEngine.UIElements.StyleMatchingContext::processResult Action_2_tE18332F29E8B0E081617E38B4A34F0089F310E53* ___processResult_3; }; // UnityEngine.UIElements.StyleProperty struct StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83 : public RuntimeObject { // System.String UnityEngine.UIElements.StyleProperty::m_Name String_t* ___m_Name_0; // System.Int32 UnityEngine.UIElements.StyleProperty::m_Line int32_t ___m_Line_1; // UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleProperty::m_Values StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___m_Values_2; // System.Boolean UnityEngine.UIElements.StyleProperty::isCustomProperty bool ___isCustomProperty_3; // System.Boolean UnityEngine.UIElements.StyleProperty::requireVariableResolve bool ___requireVariableResolve_4; }; // UnityEngine.UIElements.StylePropertyAnimationSystem struct StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718 : public RuntimeObject { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem::m_CurrentTimeMs int64_t ___m_CurrentTimeMs_0; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat UnityEngine.UIElements.StylePropertyAnimationSystem::m_Floats ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* ___m_Floats_1; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt UnityEngine.UIElements.StylePropertyAnimationSystem::m_Ints ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* ___m_Ints_2; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength UnityEngine.UIElements.StylePropertyAnimationSystem::m_Lengths ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* ___m_Lengths_3; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor UnityEngine.UIElements.StylePropertyAnimationSystem::m_Colors ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* ___m_Colors_4; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground UnityEngine.UIElements.StylePropertyAnimationSystem::m_Backgrounds ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* ___m_Backgrounds_5; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition UnityEngine.UIElements.StylePropertyAnimationSystem::m_FontDefinitions ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* ___m_FontDefinitions_6; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont UnityEngine.UIElements.StylePropertyAnimationSystem::m_Fonts ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* ___m_Fonts_7; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow UnityEngine.UIElements.StylePropertyAnimationSystem::m_TextShadows ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* ___m_TextShadows_8; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale UnityEngine.UIElements.StylePropertyAnimationSystem::m_Scale ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* ___m_Scale_9; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate UnityEngine.UIElements.StylePropertyAnimationSystem::m_Rotate ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* ___m_Rotate_10; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate UnityEngine.UIElements.StylePropertyAnimationSystem::m_Translate ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* ___m_Translate_11; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin UnityEngine.UIElements.StylePropertyAnimationSystem::m_TransformOrigin ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* ___m_TransformOrigin_12; // System.Collections.Generic.List`1 UnityEngine.UIElements.StylePropertyAnimationSystem::m_AllValues List_1_t491E344573B9D6F61E36AF56132B7412453928C9* ___m_AllValues_13; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem::m_PropertyToValues Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* ___m_PropertyToValues_14; }; // UnityEngine.UIElements.StyleSheets.StylePropertyReader struct StylePropertyReader_tA960AF3A0C411045E92E04E997D7EB2EF1B7552A : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_Values List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* ___m_Values_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_ValueCount List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_ValueCount_2; // UnityEngine.UIElements.StyleVariableResolver UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_Resolver StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* ___m_Resolver_3; // UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_Sheet StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___m_Sheet_4; // UnityEngine.UIElements.StyleProperty[] UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_Properties StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* ___m_Properties_5; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_PropertyIds StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___m_PropertyIds_6; // System.Int32 UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_CurrentValueIndex int32_t ___m_CurrentValueIndex_7; // System.Int32 UnityEngine.UIElements.StyleSheets.StylePropertyReader::m_CurrentPropertyIndex int32_t ___m_CurrentPropertyIndex_8; // UnityEngine.UIElements.StyleProperty UnityEngine.UIElements.StyleSheets.StylePropertyReader::k__BackingField StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* ___U3CpropertyU3Ek__BackingField_9; // UnityEngine.UIElements.StyleSheets.StylePropertyId UnityEngine.UIElements.StyleSheets.StylePropertyReader::k__BackingField int32_t ___U3CpropertyIdU3Ek__BackingField_10; // System.Int32 UnityEngine.UIElements.StyleSheets.StylePropertyReader::k__BackingField int32_t ___U3CvalueCountU3Ek__BackingField_11; // System.Single UnityEngine.UIElements.StyleSheets.StylePropertyReader::k__BackingField float ___U3CdpiScalingU3Ek__BackingField_12; }; // UnityEngine.UIElements.StyleSheets.StylePropertyUtil struct StylePropertyUtil_t11D3E3E4F0B51C0D07736B9FCADFC78C99AA0190 : public RuntimeObject { }; // UnityEngine.UIElements.StyleRule struct StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E : public RuntimeObject { // UnityEngine.UIElements.StyleProperty[] UnityEngine.UIElements.StyleRule::m_Properties StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* ___m_Properties_0; // System.Int32 UnityEngine.UIElements.StyleRule::line int32_t ___line_1; // System.Int32 UnityEngine.UIElements.StyleRule::customPropertiesCount int32_t ___customPropertiesCount_2; }; // UnityEngine.UIElements.StyleValueCollection struct StyleValueCollection_t5ADC08D23E648FBE78F2C161494786E6C83E1377 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.StyleValueCollection::m_Values List_1_t686B3253BF1ECA33C528F281967CD2DA263C252E* ___m_Values_0; }; // UnityEngine.UIElements.StyleVariableContext struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527 : public RuntimeObject { // System.Int32 UnityEngine.UIElements.StyleVariableContext::m_VariableHash int32_t ___m_VariableHash_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.StyleVariableContext::m_Variables List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* ___m_Variables_2; // System.Collections.Generic.List`1 UnityEngine.UIElements.StyleVariableContext::m_SortedHash List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_SortedHash_3; }; // UnityEngine.UIElements.TimerEventScheduler struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.TimerEventScheduler::m_ScheduledItems List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ___m_ScheduledItems_0; // System.Boolean UnityEngine.UIElements.TimerEventScheduler::m_TransactionMode bool ___m_TransactionMode_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.TimerEventScheduler::m_ScheduleTransactions List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ___m_ScheduleTransactions_2; // System.Collections.Generic.HashSet`1 UnityEngine.UIElements.TimerEventScheduler::m_UnscheduleTransactions HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* ___m_UnscheduleTransactions_3; // System.Boolean UnityEngine.UIElements.TimerEventScheduler::disableThrottling bool ___disableThrottling_4; // System.Int32 UnityEngine.UIElements.TimerEventScheduler::m_LastUpdatedIndex int32_t ___m_LastUpdatedIndex_5; }; // UnityEngine.UIElements.UIElementsPackageUtility struct UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A : public RuntimeObject { }; // UnityEngine.UIElements.UxmlAttributeDescription struct UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2 : public RuntimeObject { // System.String UnityEngine.UIElements.UxmlAttributeDescription::k__BackingField String_t* ___U3CnameU3Ek__BackingField_0; // System.String[] UnityEngine.UIElements.UxmlAttributeDescription::m_ObsoleteNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_ObsoleteNames_1; // System.String UnityEngine.UIElements.UxmlAttributeDescription::k__BackingField String_t* ___U3CtypeU3Ek__BackingField_2; // System.String UnityEngine.UIElements.UxmlAttributeDescription::k__BackingField String_t* ___U3CtypeNamespaceU3Ek__BackingField_3; // UnityEngine.UIElements.UxmlAttributeDescription/Use UnityEngine.UIElements.UxmlAttributeDescription::k__BackingField int32_t ___U3CuseU3Ek__BackingField_4; // UnityEngine.UIElements.UxmlTypeRestriction UnityEngine.UIElements.UxmlAttributeDescription::k__BackingField UxmlTypeRestriction_t2C4CE1ED76502CDF80010880E058AF0582910A92* ___U3CrestrictionU3Ek__BackingField_5; }; // UnityEngine.UIElements.UxmlTraits struct UxmlTraits_t3311A2EDB0705584A614B5511216DAD5279C4160 : public RuntimeObject { // System.Boolean UnityEngine.UIElements.UxmlTraits::k__BackingField bool ___U3CcanHaveAnyAttributeU3Ek__BackingField_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 { }; // UnityEngine.UIElements.VisualElementAsset struct VisualElementAsset_t558B207D551F8C727D1CD0F443F7211D095C3FA9 : public RuntimeObject { // System.String UnityEngine.UIElements.VisualElementAsset::m_Name String_t* ___m_Name_0; // System.Int32 UnityEngine.UIElements.VisualElementAsset::m_Id int32_t ___m_Id_1; // System.Int32 UnityEngine.UIElements.VisualElementAsset::m_OrderInDocument int32_t ___m_OrderInDocument_2; // System.Int32 UnityEngine.UIElements.VisualElementAsset::m_ParentId int32_t ___m_ParentId_3; // System.Int32 UnityEngine.UIElements.VisualElementAsset::m_RuleIndex int32_t ___m_RuleIndex_4; // System.String UnityEngine.UIElements.VisualElementAsset::m_Text String_t* ___m_Text_5; // UnityEngine.UIElements.PickingMode UnityEngine.UIElements.VisualElementAsset::m_PickingMode int32_t ___m_PickingMode_6; // System.String UnityEngine.UIElements.VisualElementAsset::m_FullTypeName String_t* ___m_FullTypeName_7; // System.String[] UnityEngine.UIElements.VisualElementAsset::m_Classes StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_Classes_8; // System.Collections.Generic.List`1 UnityEngine.UIElements.VisualElementAsset::m_StylesheetPaths List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_StylesheetPaths_9; // System.Collections.Generic.List`1 UnityEngine.UIElements.VisualElementAsset::m_Stylesheets List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___m_Stylesheets_10; // System.Collections.Generic.List`1 UnityEngine.UIElements.VisualElementAsset::m_Properties List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_Properties_11; }; // UnityEngine.UIElements.VisualElementExtensions struct VisualElementExtensions_t5F9CD76F92E7BD4E3F3B6FEF246057D6FEAF9A61 : public RuntimeObject { }; // UnityEngine.UIElements.VisualElementFocusRing struct VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3 : public RuntimeObject { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElementFocusRing::root VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___root_0; // UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder UnityEngine.UIElements.VisualElementFocusRing::k__BackingField int32_t ___U3CdefaultFocusOrderU3Ek__BackingField_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.VisualElementFocusRing::m_FocusRing List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___m_FocusRing_2; }; // UnityEngine.UIElements.VisualElementListPool struct VisualElementListPool_tB82E686FE29EA30D8CEDF6FF352FD1B7E7A30095 : public RuntimeObject { }; // UnityEngine.UIElements.VisualTreeUpdater struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9 : public RuntimeObject { // UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualTreeUpdater::m_Panel BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___m_Panel_0; // UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray UnityEngine.UIElements.VisualTreeUpdater::m_UpdaterArray UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* ___m_UpdaterArray_1; }; // UnityEngine.UIElements.DefaultEventSystem/<>c struct U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9 : public RuntimeObject { }; // UnityEngine.UIElements.DefaultEventSystem/Input struct Input_tC023700B4164019B29E6EFE6F9E6E5DEF0BAF0BA : public RuntimeObject { }; // UnityEngine.UIElements.DefaultEventSystem/NoInput struct NoInput_tB2381D0103606E3984C911BDF45F12083435A21D : public RuntimeObject { }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values struct Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24 : public RuntimeObject { }; // UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord struct FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D : public RuntimeObject { // System.Int32 UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_AutoIndex int32_t ___m_AutoIndex_0; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_Focusable Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_Focusable_1; // System.Boolean UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_IsSlot bool ___m_IsSlot_2; // System.Collections.Generic.List`1 UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_ScopeNavigationOrder List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___m_ScopeNavigationOrder_3; }; // UnityEngine.UIElements.VisualTreeStyleUpdaterTraversal/<>c struct U3CU3Ec_tD85AC599FA8D7FFDFB50F5FD2F62908FDEB78B2C : public RuntimeObject { }; // UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer struct EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A : public RuntimeObject { }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.Background> struct AnimationDataSet_2_t07C050B2EAC67E726A0EDE08E5279AEDE10CD2E1 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t4FC6419C796BBADFEC77D9CB97A3FB7B1C6D5CB8* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style BackgroundU5BU5D_t29762095DD694E79A85A59135735FF02E54C4B46* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.Color> struct AnimationDataSet_2_t5C2C52995428480EE498ED27BBDAFCCE55045703 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_tDFE3104887D7AEB406BC646123D7C8AA698EB58A* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.Font> struct AnimationDataSet_2_t92FCAA6D89846E7F4BBF5F806D25FD218AD2DF9D { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t024015F2FF2FC69854D9FD05CE50190B4B1F3A64* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style FontU5BU5D_t418554EC037A82050D1E53593D5B2A8C395054F3* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.FontDefinition> struct AnimationDataSet_2_t484294514C51AC5E0E440CDA5AF2A1043C53E0FC { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t568C72D6625FA05F854FF86F02910C531D98B72E* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style FontDefinitionU5BU5D_t31BDC3E2D72918B36F815F95F7CBA1F057E3DA39* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,System.Int32> struct AnimationDataSet_2_t4DB9D41C1AF8039FC6D44B76F29446F2BEC85A14 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t920355EC41DECEE4E1D5688CEA971923802FC9A3* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.Length> struct AnimationDataSet_2_tC6CE5153E3EAA98BB106BC6F00B2A9DE6FD23D69 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_tE2C14BF5968870FDDD993014F93FDE3FC5572837* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style LengthU5BU5D_t6E92E14664BA86924824C32A0BBE10AEC53C7FAE* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.Rotate> struct AnimationDataSet_2_tC89D9008D3FFA8DFDC3145842EFEC11F9D8EBEAC { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t4EA7859B72A26B20006E0BD02EC63611C4C71485* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style RotateU5BU5D_tD482C518713DEC5763C34C827A9B6DB565776772* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.Scale> struct AnimationDataSet_2_tF4CF89DB617BD2ACE24400B864B2FB32EADB9D04 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_tF2D26ADE6FCC1E97FB2FFC1DC56D63F08E711A3C* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style ScaleU5BU5D_tE608175710457D7343DD849244BF59B58157F0EF* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,System.Single> struct AnimationDataSet_2_t37FCD741F1DDE73FBF7D33FB969BB39D5F0EB530 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t60D6EDC5438323017497721F3A8E4A0376F2B741* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.TextShadow> struct AnimationDataSet_2_t41E105586D98932D715A57A47A3E21B5C3A7B340 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_t8EE2FFAAC9B7C301CF4690109183A2EFDFC5A20F* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style TextShadowU5BU5D_tF37C87EBD3D8745BEDABCE2EA499DE16C15B5D8C* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.TransformOrigin> struct AnimationDataSet_2_t4532152E7A78B3E14F61FA9CA7C80BC1C3269D33 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_tB3A736D4DE7E747B7C1B6CA7B36EB41FA6207653* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style TransformOriginU5BU5D_t0BDBC9C8F1888009152284DC2903B3C289F826DA* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.Translate> struct AnimationDataSet_2_t9D395E96FBE02DA4D17B2E175F9B5C297C1BBAA8 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing EmptyDataU5BU5D_tFD0240910F0FF75CC94A141EDE346043BD9C179C* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style TranslateU5BU5D_t9199DFD72A8EC5FA4C33D75E5F85242F9F97E358* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t0DDECCB612303E94B577E5978AB4B36B5192AFB1* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t7D21FA13314B030338650732321EC6B9E93FF0F6* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t45DAD27FEA03547B7581715461816FA37E7EC651* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData> struct AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880 { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0; // UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1; // TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3* ___timing_2; // TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822* ___style_3; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count int32_t ___count_4; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* ____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_t54FBE51E1E7597CC88424504B71922EE44B2AF04 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ____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_t6209EE23CCD16838DA331AC87789A15508C6C72B { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ____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 int32_t ____current_3; }; // System.Collections.Generic.HashSet`1/Enumerator struct Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8 { // System.Collections.Generic.HashSet`1 System.Collections.Generic.HashSet`1/Enumerator::_set HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ____set_0; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1/Enumerator::_current RuntimeObject* ____current_3; }; // 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_tE75B17BD23B7FE4380B8296A8D60B816B42CB84B { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t365205E6BE687FCF41975C16741DD9C303C1C269* ____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 int32_t ____current_3; }; // System.Collections.Generic.HashSet`1/Enumerator struct Enumerator_tC8B17CCCCF02844B647F3D0A586099A30F10D26D { // System.Collections.Generic.HashSet`1 System.Collections.Generic.HashSet`1/Enumerator::_set HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* ____set_0; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1/Enumerator::_current VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t491E344573B9D6F61E36AF56132B7412453928C9* ____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 Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ____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 FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ____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.Nullable`1 struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData struct StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385 { // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___startValue_0; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___endValue_1; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___reversingAdjustedStartValue_2; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___currentValue_3; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData struct StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595 { // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue int32_t ___startValue_0; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue int32_t ___endValue_1; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue int32_t ___reversingAdjustedStartValue_2; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue int32_t ___currentValue_3; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData struct StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976 { // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue float ___startValue_0; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue float ___endValue_1; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue float ___reversingAdjustedStartValue_2; // T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue float ___currentValue_3; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A* ___m_Ref_0; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263 { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288 { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11 { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49 { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92 { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData struct TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3 { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs int64_t ___startTimeMs_0; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs int32_t ___durationMs_1; // System.Func`2 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress float ___easedProgress_3; // System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor float ___reversingShorteningFactor_4; // System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted bool ___isStarted_5; // System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs int32_t ___delayMs_6; }; // UnityEngine.UIElements.TypedUxmlAttributeDescription`1 struct TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2 { // T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::k__BackingField bool ___U3CdefaultValueU3Ek__BackingField_6; }; // UnityEngine.UIElements.TypedUxmlAttributeDescription`1 struct TypedUxmlAttributeDescription_1_tD8728D2AC8F9232D2E6A83B327DC0258F2CEEFA2 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2 { // T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::k__BackingField String_t* ___U3CdefaultValueU3Ek__BackingField_6; }; // UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE { // System.UInt32 UnityEngine.UIElements.UIR.Alloc::start uint32_t ___start_0; // System.UInt32 UnityEngine.UIElements.UIR.Alloc::size uint32_t ___size_1; // System.Object UnityEngine.UIElements.UIR.Alloc::handle RuntimeObject* ___handle_2; // System.Boolean UnityEngine.UIElements.UIR.Alloc::shortLived bool ___shortLived_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_pinvoke { uint32_t ___start_0; uint32_t ___size_1; Il2CppIUnknown* ___handle_2; int32_t ___shortLived_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_com { uint32_t ___start_0; uint32_t ___size_1; Il2CppIUnknown* ___handle_2; int32_t ___shortLived_3; }; // UnityEngine.UIElements.Angle struct Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC { // System.Single UnityEngine.UIElements.Angle::m_Value float ___m_Value_0; // UnityEngine.UIElements.Angle/Unit UnityEngine.UIElements.Angle::m_Unit int32_t ___m_Unit_1; }; // UnityEngine.UIElements.UIR.BMPAlloc struct BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 { // System.Int32 UnityEngine.UIElements.UIR.BMPAlloc::page int32_t ___page_1; // System.UInt16 UnityEngine.UIElements.UIR.BMPAlloc::pageLine uint16_t ___pageLine_2; // System.Byte UnityEngine.UIElements.UIR.BMPAlloc::bitIndex uint8_t ___bitIndex_3; // UnityEngine.UIElements.UIR.OwnedState UnityEngine.UIElements.UIR.BMPAlloc::ownedState uint8_t ___ownedState_4; }; // UnityEngine.UIElements.Background struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 { // UnityEngine.Texture2D UnityEngine.UIElements.Background::m_Texture Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_Texture_0; // UnityEngine.Sprite UnityEngine.UIElements.Background::m_Sprite Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_1; // UnityEngine.RenderTexture UnityEngine.UIElements.Background::m_RenderTexture RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RenderTexture_2; // UnityEngine.UIElements.VectorImage UnityEngine.UIElements.Background::m_VectorImage VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC* ___m_VectorImage_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.Background struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke { Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_Texture_0; Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_1; RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RenderTexture_2; VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC* ___m_VectorImage_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.Background struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com { Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_Texture_0; Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_1; RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RenderTexture_2; VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC* ___m_VectorImage_3; }; // UnityEngine.UIElements.BaseVisualTreeHierarchyTrackerUpdater struct BaseVisualTreeHierarchyTrackerUpdater_t9FD4CD3627F642894C6485E93BF309961FCFBC03 : public BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41 { // UnityEngine.UIElements.BaseVisualTreeHierarchyTrackerUpdater/State UnityEngine.UIElements.BaseVisualTreeHierarchyTrackerUpdater::m_State int32_t ___m_State_2; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualTreeHierarchyTrackerUpdater::m_CurrentChangeElement VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CurrentChangeElement_3; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualTreeHierarchyTrackerUpdater::m_CurrentChangeParent VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CurrentChangeParent_4; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; // UnityEngine.Color struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F { // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; }; // UnityEngine.Color32 struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B { union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; }; // UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1 { // UnityEngine.UIElements.StyleSheets.StylePropertyId UnityEngine.UIElements.ComputedTransitionProperty::id int32_t ___id_0; // System.Int32 UnityEngine.UIElements.ComputedTransitionProperty::durationMs int32_t ___durationMs_1; // System.Int32 UnityEngine.UIElements.ComputedTransitionProperty::delayMs int32_t ___delayMs_2; // System.Func`2 UnityEngine.UIElements.ComputedTransitionProperty::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke { int32_t ___id_0; int32_t ___durationMs_1; int32_t ___delayMs_2; Il2CppMethodPointer ___easingCurve_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com { int32_t ___id_0; int32_t ___durationMs_1; int32_t ___delayMs_2; Il2CppMethodPointer ___easingCurve_3; }; // UnityEngine.UIElements.CreationContext struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.CreationContext::k__BackingField VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1; // UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.CreationContext::k__BackingField VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.CreationContext::k__BackingField Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3; // System.Collections.Generic.List`1 UnityEngine.UIElements.CreationContext::k__BackingField List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.CreationContext struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_marshaled_pinvoke { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1; VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2; Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3; List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4; }; // Native definition for COM marshalling of UnityEngine.UIElements.CreationContext struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_marshaled_com { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1; VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2; Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3; List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4; }; // System.Double struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F { // System.Double System.Double::m_value double ___m_value_0; }; // UnityEngine.UIElements.DynamicAtlas struct DynamicAtlas_tA1A51ADBE1DBFD82F6D52D5CA4D09D82F89678A8 : public AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC { // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.DynamicAtlas::m_Database Dictionary_2_tF1C3BFA70D6875EEF369CE69E661C6B617B5BEC0* ___m_Database_1; // UnityEngine.UIElements.DynamicAtlasPage UnityEngine.UIElements.DynamicAtlas::m_PointPage DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E* ___m_PointPage_2; // UnityEngine.UIElements.DynamicAtlasPage UnityEngine.UIElements.DynamicAtlas::m_BilinearPage DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E* ___m_BilinearPage_3; // UnityEngine.ColorSpace UnityEngine.UIElements.DynamicAtlas::m_ColorSpace int32_t ___m_ColorSpace_4; // System.Collections.Generic.List`1 UnityEngine.UIElements.DynamicAtlas::m_Panels List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6* ___m_Panels_5; // System.Int32 UnityEngine.UIElements.DynamicAtlas::m_MinAtlasSize int32_t ___m_MinAtlasSize_6; // System.Int32 UnityEngine.UIElements.DynamicAtlas::m_MaxAtlasSize int32_t ___m_MaxAtlasSize_7; // System.Int32 UnityEngine.UIElements.DynamicAtlas::m_MaxSubTextureSize int32_t ___m_MaxSubTextureSize_8; // UnityEngine.UIElements.DynamicAtlasFilters UnityEngine.UIElements.DynamicAtlas::m_ActiveFilters int32_t ___m_ActiveFilters_9; // UnityEngine.UIElements.DynamicAtlasCustomFilter UnityEngine.UIElements.DynamicAtlas::m_CustomFilter DynamicAtlasCustomFilter_tD33BC519AF0B6E7D8C273CB64D900DF5FEB1E3C6* ___m_CustomFilter_10; }; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F { }; // 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 { }; // UnityEngine.EventInterests struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 { // System.Boolean UnityEngine.EventInterests::k__BackingField bool ___U3CwantsMouseMoveU3Ek__BackingField_0; // System.Boolean UnityEngine.EventInterests::k__BackingField bool ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1; // System.Boolean UnityEngine.EventInterests::k__BackingField bool ___U3CwantsLessLayoutEventsU3Ek__BackingField_2; }; // Native definition for P/Invoke marshalling of UnityEngine.EventInterests struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_pinvoke { int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0; int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1; int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2; }; // Native definition for COM marshalling of UnityEngine.EventInterests struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_com { int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0; int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1; int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2; }; // UnityEngine.UIElements.Focusable struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0 : public CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 { // System.Boolean UnityEngine.UIElements.Focusable::k__BackingField bool ___U3CfocusableU3Ek__BackingField_1; // System.Int32 UnityEngine.UIElements.Focusable::k__BackingField int32_t ___U3CtabIndexU3Ek__BackingField_2; // System.Boolean UnityEngine.UIElements.Focusable::m_DelegatesFocus bool ___m_DelegatesFocus_3; // System.Boolean UnityEngine.UIElements.Focusable::m_ExcludeFromFocusRing bool ___m_ExcludeFromFocusRing_4; // System.Boolean UnityEngine.UIElements.Focusable::isIMGUIContainer bool ___isIMGUIContainer_5; }; // UnityEngine.UIElements.FontDefinition struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C { // UnityEngine.Font UnityEngine.UIElements.FontDefinition::m_Font Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_Font_0; // UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.FontDefinition::m_FontAsset FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_FontAsset_1; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.FontDefinition struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke { Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_Font_0; FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_FontAsset_1; }; // Native definition for COM marshalling of UnityEngine.UIElements.FontDefinition struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com { Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_Font_0; FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_FontAsset_1; }; // 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; }; // UnityEngine.UIElements.KeyboardNavigationManipulator struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3 : public Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE { // System.Action`2 UnityEngine.UIElements.KeyboardNavigationManipulator::m_Action Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A* ___m_Action_1; }; // UnityEngine.UIElements.Length struct Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 { // System.Single UnityEngine.UIElements.Length::m_Value float ___m_Value_1; // UnityEngine.UIElements.Length/Unit UnityEngine.UIElements.Length::m_Unit int32_t ___m_Unit_2; }; // UnityEngine.UIElements.ManipulatorActivationFilter struct ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 { // UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::